mirror of
https://github.com/Qortal/qortal.git
synced 2025-06-02 22:46:58 +00:00
Fixed string formatting error.
This commit is contained in:
parent
f532dbe7b4
commit
5643e57ede
@ -252,7 +252,7 @@ public class Synchronizer {
|
|||||||
while (iterator.hasNext()) {
|
while (iterator.hasNext()) {
|
||||||
Peer peer = (Peer) iterator.next();
|
Peer peer = (Peer) iterator.next();
|
||||||
if (peer.getCommonBlockData() == null) {
|
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();
|
iterator.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user