Author: j16sdiz
Date: 2008-05-12 13:51:09 +0000 (Mon, 12 May 2008)
New Revision: 19903
Modified:
branches/saltedhashstore/freenet/src/freenet/store/SaltedHashFreenetStore.java
Log:
fix misleading log
Modified:
branches/saltedhashstore/freenet/src/freenet/store/SaltedHashFreenetStore.java
===================================================================
---
branches/saltedhashstore/freenet/src/freenet/store/SaltedHashFreenetStore.java
2008-05-12 08:07:22 UTC (rev 19902)
+++
branches/saltedhashstore/freenet/src/freenet/store/SaltedHashFreenetStore.java
2008-05-12 13:51:09 UTC (rev 19903)
@@ -1007,9 +1007,6 @@
writeEntry(entry,
newOffset[i]);
resolvedEntries++;
continue LOOP_ITEMS;
- } else {
- if (logDEBUG)
-
Logger.debug(this, "Drop old item: " +
HexUtil.bytesToHex(entry.digestedRoutingKey));
}
} catch (IOException e) {
Logger.debug(this,
"IOExcception on putBackOldItems", e);
@@ -1018,6 +1015,9 @@
}
}
+ if (logDEBUG)
+ Logger.debug(this, "Drop old item: " +
HexUtil.bytesToHex(entry.digestedRoutingKey));
+
droppedEntries++;
}
}