[freenet-cvs] r11824 - trunk/freenet/src/freenet/node/fcp
mario at freenetproject.org
mario at freenetproject.org
Fri Feb 16 22:34:18 UTC 2007
Author: mario
Date: 2007-02-16 22:34:17 +0000 (Fri, 16 Feb 2007)
New Revision: 11824
Modified:
trunk/freenet/src/freenet/node/fcp/FCPServer.java
Log:
humans count from 1
Modified: trunk/freenet/src/freenet/node/fcp/FCPServer.java
===================================================================
--- trunk/freenet/src/freenet/node/fcp/FCPServer.java 2007-02-16 20:59:34 UTC (rev 11823)
+++ trunk/freenet/src/freenet/node/fcp/FCPServer.java 2007-02-16 22:34:17 UTC (rev 11824)
@@ -593,7 +593,7 @@
}
for(int i=0;i<count;i++) {
WrapperManager.signalStarting(5*60*1000); // 5 minutes per request
- System.out.println("Loading persistent request "+i+" of "+count+"...");
+ System.out.println("Loading persistent request "+(i+1)+" of "+count+"..."); // humans count from 1..
ClientRequest.readAndRegister(br, this);
}
br.close();
More information about the cvs
mailing list