Author: toad
Date: 2006-08-17 16:40:58 +0000 (Thu, 17 Aug 2006)
New Revision: 10168

Modified:
   trunk/freenet/src/freenet/node/IPDetectorPluginManager.java
Log:
logging

Modified: trunk/freenet/src/freenet/node/IPDetectorPluginManager.java
===================================================================
--- trunk/freenet/src/freenet/node/IPDetectorPluginManager.java 2006-08-17 
16:30:20 UTC (rev 10167)
+++ trunk/freenet/src/freenet/node/IPDetectorPluginManager.java 2006-08-17 
16:40:58 UTC (rev 10168)
@@ -375,8 +375,10 @@
                                }
                        }
                        DetectedIP[] list = (DetectedIP[]) 
map.values().toArray(new DetectedIP[map.size()]);
-                       for(int i=0;i<list.length;i++)
+                       for(int i=0;i<list.length;i++) {
                                Logger.minor(this, "Detected IP: 
"+list[i].publicAddress+ " : type "+list[i].natType);
+                               System.out.println("Detected IP: 
"+list[i].publicAddress+ " : type "+list[i].natType);
+                       }
                        detector.processDetectedIPs(list);
                        } finally {
                                runner = null;


Reply via email to