From 8e5c4a3e22ba1c2abda26187bc89e4b30fc2453e Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Wed, 3 Dec 2008 16:55:48 +0000 Subject: [PATCH] error to warn --- router/java/src/net/i2p/router/Blocklist.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/router/java/src/net/i2p/router/Blocklist.java b/router/java/src/net/i2p/router/Blocklist.java index 4543a49a3c..5f686c1923 100644 --- a/router/java/src/net/i2p/router/Blocklist.java +++ b/router/java/src/net/i2p/router/Blocklist.java @@ -172,8 +172,8 @@ public class Blocklist { private void readBlocklistFile(String file) { File BLFile = new File(file); if (BLFile == null || (!BLFile.exists()) || BLFile.length() <= 0) { - if (_log.shouldLog(Log.ERROR)) - _log.error("Blocklist file not found: " + file); + if (_log.shouldLog(Log.WARN)) + _log.warn("Blocklist file not found: " + file); return; } long start = _context.clock().now(); -- GitLab