Bugfix: logger information has not enough arguments (#2147)

This commit is contained in:
于玉桔 2019-01-11 20:00:23 +08:00 committed by 吴晟 Wu Sheng
parent 458135a2d8
commit 20aa7f9ba1
3 changed files with 4 additions and 4 deletions

View File

@ -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);
}
}
}

View File

@ -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);
}
}

View File

@ -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);
}
}
}