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

Skip to content
Snippets Groups Projects
Commit 40df846e authored by jrandom's avatar jrandom Committed by zzz
Browse files

logging

parent eee94fbf
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ public class ConnectionPacketHandler { ...@@ -35,7 +35,7 @@ public class ConnectionPacketHandler {
if (nextTime <= 0) { if (nextTime <= 0) {
con.setNextSendTime(con.getOptions().getSendAckDelay() + _context.clock().now()); con.setNextSendTime(con.getOptions().getSendAckDelay() + _context.clock().now());
if (_log.shouldLog(Log.DEBUG)) if (_log.shouldLog(Log.DEBUG))
_log.error("Scheduling ack in " + con.getOptions().getSendAckDelay() + "ms for received packet " + packet); _log.debug("Scheduling ack in " + con.getOptions().getSendAckDelay() + "ms for received packet " + packet);
} else { } else {
if (_log.shouldLog(Log.DEBUG)) if (_log.shouldLog(Log.DEBUG))
_log.debug("Ack is already scheduled in " + (nextTime-_context.clock().now()) _log.debug("Ack is already scheduled in " + (nextTime-_context.clock().now())
......
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