I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 09b868e2 authored by zzz's avatar zzz
Browse files

* Blocklist: Change logging from ERROR to WARN

parent 83801c9f
No related branches found
No related tags found
No related merge requests found
...@@ -125,8 +125,8 @@ public class Blocklist { ...@@ -125,8 +125,8 @@ public class Blocklist {
if (isBlocklisted(peer)) if (isBlocklisted(peer))
count++; count++;
} }
if (count > 0 && _log.shouldLog(Log.ERROR)) if (count > 0 && _log.shouldLog(Log.WARN))
_log.error("Blocklisted " + count + " routers in the netDb."); _log.warn("Blocklisted " + count + " routers in the netDb.");
for (Iterator iter = _peerBlocklist.keySet().iterator(); iter.hasNext(); ) { for (Iterator iter = _peerBlocklist.keySet().iterator(); iter.hasNext(); ) {
Hash peer = (Hash) iter.next(); Hash peer = (Hash) iter.next();
String reason = "Blocklisted by router hash"; String reason = "Blocklisted by router hash";
...@@ -246,13 +246,13 @@ public class Blocklist { ...@@ -246,13 +246,13 @@ public class Blocklist {
return; return;
} }
_blocklistSize = count - removed; _blocklistSize = count - removed;
if (_log.shouldLog(Log.ERROR)) { if (_log.shouldLog(Log.WARN)) {
_log.error("Removed " + badcount + " bad entries and comment lines"); _log.warn("Removed " + badcount + " bad entries and comment lines");
_log.error("Read " + count + " valid entries from the blocklist " + BLFile); _log.warn("Read " + count + " valid entries from the blocklist " + BLFile);
_log.error("Merged " + removed + " overlapping entries"); _log.warn("Merged " + removed + " overlapping entries");
_log.error("Result is " + _blocklistSize + " entries"); _log.warn("Result is " + _blocklistSize + " entries");
_log.error("Blocking " + ipcount + " IPs and " + peercount + " hashes"); _log.warn("Blocking " + ipcount + " IPs and " + peercount + " hashes");
_log.error("Blocklist processing finished, time: " + (_context.clock().now() - start)); _log.warn("Blocklist processing finished, time: " + (_context.clock().now() - start));
} }
} }
...@@ -443,8 +443,8 @@ public class Blocklist { ...@@ -443,8 +443,8 @@ public class Blocklist {
if (ip.length != 4) if (ip.length != 4)
return; return;
if (add(toInt(ip))) if (add(toInt(ip)))
if (_log.shouldLog(Log.ERROR)) if (_log.shouldLog(Log.WARN))
_log.error("Adding IP to blocklist: " + (ip[0]&0xff) + '.' + (ip[1]&0xff) + '.' + (ip[2]&0xff) + '.' + (ip[3]&0xff)); _log.warn("Adding IP to blocklist: " + (ip[0]&0xff) + '.' + (ip[1]&0xff) + '.' + (ip[2]&0xff) + '.' + (ip[3]&0xff));
} }
private boolean add(int ip) { private boolean add(int ip) {
...@@ -737,8 +737,8 @@ public class Blocklist { ...@@ -737,8 +737,8 @@ public class Blocklist {
reason = reason + '.'; reason = reason + '.';
} }
reason = reason + " blocklisted by entry \"" + buf + "\""; reason = reason + " blocklisted by entry \"" + buf + "\"";
if (_log.shouldLog(Log.ERROR)) if (_log.shouldLog(Log.WARN))
_log.error("Shitlisting " + peer + " " + reason); _log.warn("Shitlisting " + peer + " " + reason);
_context.shitlist().shitlistRouterForever(peer, reason); _context.shitlist().shitlistRouterForever(peer, reason);
return; return;
} }
......
...@@ -93,16 +93,16 @@ public class HandleFloodfillDatabaseStoreMessageJob extends JobImpl { ...@@ -93,16 +93,16 @@ public class HandleFloodfillDatabaseStoreMessageJob extends JobImpl {
if (prevNetDb == null) { if (prevNetDb == null) {
if ((!getContext().shitlist().isShitlistedForever(key)) && if ((!getContext().shitlist().isShitlistedForever(key)) &&
getContext().blocklist().isBlocklisted(key) && getContext().blocklist().isBlocklisted(key) &&
_log.shouldLog(Log.ERROR)) _log.shouldLog(Log.WARN))
_log.error("Blocklisting new peer " + key); _log.warn("Blocklisting new peer " + key);
} else { } else {
Set oldAddr = prevNetDb.getAddresses(); Set oldAddr = prevNetDb.getAddresses();
Set newAddr = _message.getRouterInfo().getAddresses(); Set newAddr = _message.getRouterInfo().getAddresses();
if (newAddr != null && (!newAddr.equals(oldAddr)) && if (newAddr != null && (!newAddr.equals(oldAddr)) &&
(!getContext().shitlist().isShitlistedForever(key)) && (!getContext().shitlist().isShitlistedForever(key)) &&
getContext().blocklist().isBlocklisted(key) && getContext().blocklist().isBlocklisted(key) &&
_log.shouldLog(Log.ERROR)) _log.shouldLog(Log.WARN))
_log.error("New address received, Blocklisting old peer " + key); _log.warn("New address received, Blocklisting old peer " + key);
} }
} }
getContext().profileManager().heardAbout(key); getContext().profileManager().heardAbout(key);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment