Author: toad
Date: 2008-07-24 15:15:33 +0000 (Thu, 24 Jul 2008)
New Revision: 21369
Modified:
branches/db4o/freenet/src/freenet/client/async/ClientRequestSchedulerNonPersistent.java
Log:
Logging
Modified:
branches/db4o/freenet/src/freenet/client/async/ClientRequestSchedulerNonPersistent.java
===================================================================
---
branches/db4o/freenet/src/freenet/client/async/ClientRequestSchedulerNonPersistent.java
2008-07-24 14:53:00 UTC (rev 21368)
+++
branches/db4o/freenet/src/freenet/client/async/ClientRequestSchedulerNonPersistent.java
2008-07-24 15:15:33 UTC (rev 21369)
@@ -109,12 +109,12 @@
o = pendingKeys.get(key);
if(o == null) {
if(complain)
- Logger.normal(this, "Not found:
"+getter+" for "+key+" removing (no such key)");
+ Logger.normal(this, "Not found:
"+getter+" for "+key+" removing (no such key)", new Exception("debug"));
} else if(o instanceof GotKeyListener) {
GotKeyListener oldGet = (GotKeyListener) o;
if(oldGet != getter) {
if(complain)
- Logger.normal(this, "Not found:
"+getter+" for "+key+" removing (1 getter)");
+ Logger.normal(this, "Not found:
"+getter+" for "+key+" removing (1 getter)", new Exception("debug"));
} else {
dropped = true;
pendingKeys.remove(key);