1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-06-01 14:06:58 +00:00

Fixed string formatting error.

This commit is contained in:
CalDescent 2021-04-24 16:21:04 +01:00
parent f532dbe7b4
commit 5643e57ede

@ -252,7 +252,7 @@ public class Synchronizer {
while (iterator.hasNext()) {
Peer peer = (Peer) iterator.next();
if (peer.getCommonBlockData() == null) {
LOGGER.debug(String.format("Removed peer %s because it has no common block data"));
LOGGER.debug(String.format("Removed peer %s because it has no common block data", peer));
iterator.remove();
}
}