Author: toad
Date: 2008-02-22 21:57:23 +0000 (Fri, 22 Feb 2008)
New Revision: 18111

Modified:
   trunk/freenet/src/freenet/client/async/SplitFileFetcherSegment.java
Log:
Logging

Modified: trunk/freenet/src/freenet/client/async/SplitFileFetcherSegment.java
===================================================================
--- trunk/freenet/src/freenet/client/async/SplitFileFetcherSegment.java 
2008-02-22 21:47:40 UTC (rev 18110)
+++ trunk/freenet/src/freenet/client/async/SplitFileFetcherSegment.java 
2008-02-22 21:57:23 UTC (rev 18111)
@@ -550,7 +550,7 @@
                                int tries = dataRetries[i];
                                SplitFileFetcherSubSegment sub = 
getSubSegment(tries);
                                if(logMINOR)
-                                       Logger.minor(this, "Retrying after 
cooldown: data block "+i+" on "+this+" : tries="+tries+"/"+maxTries+" : "+sub);
+                                       Logger.minor(this, "Retrying after 
cooldown on "+this+": data block "+i+" on "+this+" : 
tries="+tries+"/"+maxTries+" : "+sub);
                                sub.add(i, false);
                                notFound = false;
                        }
@@ -561,7 +561,7 @@
                                int tries = checkRetries[i];
                                SplitFileFetcherSubSegment sub = 
getSubSegment(tries);
                                if(logMINOR)
-                                       Logger.minor(this, "Retrying after 
cooldown: check block "+i+" on "+this+" : tries="+tries+"/"+maxTries+" : "+sub);
+                                       Logger.minor(this, "Retrying after 
cooldown on "+this+": check block "+i+" on "+this+" : 
tries="+tries+"/"+maxTries+" : "+sub);
                                sub.add(i+dataKeys.length, false);
                                notFound = false;
                        }


Reply via email to