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

Skip to content
Snippets Groups Projects
Commit 8f8fb0e5 authored by zzz's avatar zzz
Browse files

log tweak

parent 2126b515
No related branches found
No related tags found
No related merge requests found
...@@ -490,7 +490,8 @@ public class TunnelDispatcher implements Service { ...@@ -490,7 +490,8 @@ public class TunnelDispatcher implements Service {
} else { } else {
_context.messageHistory().droppedTunnelGatewayMessageUnknown(msg.getUniqueId(), outboundTunnel.getTunnelId()); _context.messageHistory().droppedTunnelGatewayMessageUnknown(msg.getUniqueId(), outboundTunnel.getTunnelId());
int level = (_context.router().getUptime() > 10*60*1000 ? Log.ERROR : Log.WARN); //int level = (_context.router().getUptime() > 10*60*1000 ? Log.ERROR : Log.WARN);
int level = Log.WARN;
if (_log.shouldLog(level)) if (_log.shouldLog(level))
_log.log(level, "no matching outbound tunnel for id=" + outboundTunnel _log.log(level, "no matching outbound tunnel for id=" + outboundTunnel
+ ": existing = " + _outboundGateways.size(), new Exception("src")); + ": existing = " + _outboundGateways.size(), new Exception("src"));
......
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