Fixed string formatting error.

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

View File

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