Author: nextgens
Date: 2007-06-13 18:33:23 +0000 (Wed, 13 Jun 2007)
New Revision: 13573
Modified:
trunk/freenet/src/freenet/node/FNPPacketMangler.java
Log:
lower the error level of 'uncompatible and not routable peers' connection
attempts to minor
Modified: trunk/freenet/src/freenet/node/FNPPacketMangler.java
===================================================================
--- trunk/freenet/src/freenet/node/FNPPacketMangler.java 2007-06-13
18:31:55 UTC (rev 13572)
+++ trunk/freenet/src/freenet/node/FNPPacketMangler.java 2007-06-13
18:33:23 UTC (rev 13573)
@@ -1469,7 +1469,7 @@
if(pn.isRoutingCompatible())
Logger.error(this, "Could not negotiate with "+pn+" :
no common negTypes available!: his negTypes:
"+StringArray.toString(pn.negTypes)+" my negTypes:
"+StringArray.toString(supportedNegTypes())+" despite being up to date!!");
else
- Logger.normal(this, "Could not negotiate with "+pn+" :
no common negTypes available!: his negTypes:
"+StringArray.toString(pn.negTypes)+" my negTypes:
"+StringArray.toString(supportedNegTypes())+" (probably just too old)");
+ Logger.minor(this, "Could not negotiate with "+pn+" :
no common negTypes available!: his negTypes:
"+StringArray.toString(pn.negTypes)+" my negTypes:
"+StringArray.toString(supportedNegTypes())+" (probably just too old)");
return;
}
if(logMINOR) Logger.minor(this, "Possibly sending handshake to "+pn+"
negotiation type "+negType);