Author: toad
Date: 2008-03-29 21:28:22 +0000 (Sat, 29 Mar 2008)
New Revision: 18849

Modified:
   trunk/freenet/src/freenet/node/PeerNode.java
Log:
Only log if we actually start a new ARK fetcher

Modified: trunk/freenet/src/freenet/node/PeerNode.java
===================================================================
--- trunk/freenet/src/freenet/node/PeerNode.java        2008-03-29 20:49:22 UTC 
(rev 18848)
+++ trunk/freenet/src/freenet/node/PeerNode.java        2008-03-29 21:28:22 UTC 
(rev 18849)
@@ -1977,9 +1977,10 @@
                                Logger.minor(this, "No ARK for " + this + " 
!!!!");
                                return;
                        }
-                       Logger.minor(this, "Starting ARK fetcher for " + this + 
" : " + myARK);
-                       if(arkFetcher == null)
+                       if(arkFetcher == null) {
+                               Logger.minor(this, "Starting ARK fetcher for " 
+ this + " : " + myARK);
                                arkFetcher = 
node.clientCore.uskManager.subscribeContent(myARK, this, true, 
node.arkFetcherContext, RequestStarter.IMMEDIATE_SPLITFILE_PRIORITY_CLASS, 
node);
+                       }
                }
        }



Reply via email to