Author: toad
Date: 2008-02-29 17:41:02 +0000 (Fri, 29 Feb 2008)
New Revision: 18253
Modified:
trunk/freenet/src/freenet/node/NodeCrypto.java
Log:
Logging
Modified: trunk/freenet/src/freenet/node/NodeCrypto.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeCrypto.java 2008-02-29 17:34:19 UTC
(rev 18252)
+++ trunk/freenet/src/freenet/node/NodeCrypto.java 2008-02-29 17:41:02 UTC
(rev 18253)
@@ -382,6 +382,8 @@
byte[] obuf = new byte[buf.length + 1];
obuf[0] = 1;
System.arraycopy(buf, 0, obuf, 1, buf.length);
+ if(logMINOR)
+ Logger.minor(this,
"myCompressedRef("+setup+","+heavySetup+") returning "+obuf.length+" bytes");
return obuf;
}