提交 20aa7f9b 编写于 作者: 于玉桔 提交者: wu-sheng

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

上级 458135a2
......@@ -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);
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册