I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 104594ed authored by zzz's avatar zzz
Browse files

log cleanup

parent a6ce41fa
No related branches found
No related tags found
No related merge requests found
...@@ -237,7 +237,7 @@ public class RouterInfo extends DatabaseEntry { ...@@ -237,7 +237,7 @@ public class RouterInfo extends DatabaseEntry {
if (_addresses == null) throw new DataFormatException("Router addressess isn't set? wtf!"); if (_addresses == null) throw new DataFormatException("Router addressess isn't set? wtf!");
if (_options == null) throw new DataFormatException("Router options isn't set? wtf!"); if (_options == null) throw new DataFormatException("Router options isn't set? wtf!");
long before = Clock.getInstance().now(); //long before = Clock.getInstance().now();
ByteArrayOutputStream out = new ByteArrayOutputStream(6*1024); ByteArrayOutputStream out = new ByteArrayOutputStream(6*1024);
try { try {
_identity.writeBytes(out); _identity.writeBytes(out);
...@@ -280,8 +280,10 @@ public class RouterInfo extends DatabaseEntry { ...@@ -280,8 +280,10 @@ public class RouterInfo extends DatabaseEntry {
throw new DataFormatException("IO Error getting bytes", ioe); throw new DataFormatException("IO Error getting bytes", ioe);
} }
byte data[] = out.toByteArray(); byte data[] = out.toByteArray();
long after = Clock.getInstance().now(); //if (_log.shouldLog(Log.DEBUG)) {
_log.debug("getBytes() took " + (after - before) + "ms"); // long after = Clock.getInstance().now();
// _log.debug("getBytes() took " + (after - before) + "ms");
//}
if (CACHE_ALL || _shouldCache) if (CACHE_ALL || _shouldCache)
_byteified = data; _byteified = data;
return data; return data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment