From ce6551dacd765b4332fcaec314a2fb3ae5b8a096 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 25 Jun 2019 13:30:35 +0000 Subject: [PATCH] log tweak --- .../src/net/i2p/router/networkdb/kademlia/BlindCache.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/router/java/src/net/i2p/router/networkdb/kademlia/BlindCache.java b/router/java/src/net/i2p/router/networkdb/kademlia/BlindCache.java index 45be93ae3..97f494288 100644 --- a/router/java/src/net/i2p/router/networkdb/kademlia/BlindCache.java +++ b/router/java/src/net/i2p/router/networkdb/kademlia/BlindCache.java @@ -241,6 +241,7 @@ class BlindCache { /** * For console ConfigKeyringHelper + * @return list is copied * @since 0.9.41 */ public synchronized List getData() { @@ -295,10 +296,10 @@ class BlindCache { count++; } catch (IllegalArgumentException iae) { if (log.shouldLog(Log.WARN)) - log.warn("Error reading cache entry", iae); + log.warn("Error reading cache entry: " + line, iae); } catch (DataFormatException dfe) { if (log.shouldLog(Log.WARN)) - log.warn("Error reading cache entry", dfe); + log.warn("Error reading cache entry: " + line, dfe); } } } catch (IOException ioe) {