Author: toad
Date: 2007-02-21 01:25:39 +0000 (Wed, 21 Feb 2007)
New Revision: 11870
Modified:
trunk/freenet/src/freenet/client/async/ClientGetter.java
Log:
Log the FetchException
Modified: trunk/freenet/src/freenet/client/async/ClientGetter.java
===================================================================
--- trunk/freenet/src/freenet/client/async/ClientGetter.java 2007-02-21
01:24:25 UTC (rev 11869)
+++ trunk/freenet/src/freenet/client/async/ClientGetter.java 2007-02-21
01:25:39 UTC (rev 11870)
@@ -137,6 +137,7 @@
finished = true;
if(e.mode == FetchException.DATA_NOT_FOUND &&
super.successfulBlocks > 0)
e = new FetchException(e,
FetchException.ALL_DATA_NOT_FOUND);
+ Logger.minor(this, "onFailure("+e+", "+state+")", e);
client.onFailure(e, this);
return;
}