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

Skip to content
Snippets Groups Projects
Commit 8e5c4a3e authored by zzz's avatar zzz
Browse files

error to warn

parent dff75de9
No related branches found
No related tags found
No related merge requests found
...@@ -172,8 +172,8 @@ public class Blocklist { ...@@ -172,8 +172,8 @@ public class Blocklist {
private void readBlocklistFile(String file) { private void readBlocklistFile(String file) {
File BLFile = new File(file); File BLFile = new File(file);
if (BLFile == null || (!BLFile.exists()) || BLFile.length() <= 0) { if (BLFile == null || (!BLFile.exists()) || BLFile.length() <= 0) {
if (_log.shouldLog(Log.ERROR)) if (_log.shouldLog(Log.WARN))
_log.error("Blocklist file not found: " + file); _log.warn("Blocklist file not found: " + file);
return; return;
} }
long start = _context.clock().now(); long start = _context.clock().now();
......
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