Bugfix: logger information has not enough arguments (#2147)
This commit is contained in:
parent
458135a2d8
commit
20aa7f9ba1
|
|
@ -79,7 +79,7 @@ public class EndpointInventoryRegister implements IEndpointInventoryRegister {
|
|||
|
||||
InventoryProcess.INSTANCE.in(endpointInventory);
|
||||
} else {
|
||||
logger.warn("Endpoint {} heartbeat, but not found in storage.");
|
||||
logger.warn("Endpoint {} heartbeat, but not found in storage.", endpointId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ public class NetworkAddressInventoryRegister implements INetworkAddressInventory
|
|||
|
||||
InventoryProcess.INSTANCE.in(networkAddress);
|
||||
} else {
|
||||
logger.warn("Network getAddress {} heartbeat, but not found in storage.");
|
||||
logger.warn("Network getAddress {} heartbeat, but not found in storage.", addressId);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ public class ServiceInventoryRegister implements IServiceInventoryRegister {
|
|||
|
||||
InventoryProcess.INSTANCE.in(serviceInventory);
|
||||
} else {
|
||||
logger.warn("Service {} heartbeat, but not found in storage.");
|
||||
logger.warn("Service {} heartbeat, but not found in storage.", serviceId);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -109,7 +109,7 @@ public class ServiceInventoryRegister implements IServiceInventoryRegister {
|
|||
|
||||
InventoryProcess.INSTANCE.in(serviceInventory);
|
||||
} else {
|
||||
logger.warn("Service {} mapping update, but not found in storage.");
|
||||
logger.warn("Service {} mapping update, but not found in storage.", serviceId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue