mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 15:37:54 -05:00
Refactor - eliminate non-constant string concatenation from debug and trace (#7336)
* eliminate non-constant string concatenation from debug and trace Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com> * adjustments Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com> --------- Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
@@ -101,7 +101,10 @@ public class UpnpNatManager extends AbstractNatManager {
|
||||
new BesuUpnpRegistryListener() {
|
||||
@Override
|
||||
public void remoteDeviceAdded(final Registry registry, final RemoteDevice device) {
|
||||
LOG.debug("UPnP Device discovered: " + device.getDetails().getFriendlyName());
|
||||
LOG.atDebug()
|
||||
.setMessage("UPnP Device discovered: {}")
|
||||
.addArgument(device.getDetails().getFriendlyName())
|
||||
.log();
|
||||
inspectDeviceRecursive(device, recognizedServices.keySet());
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user