Compare commits

...

1 Commits

Author SHA1 Message Date
1d6c73a66a Router: log when a tunnel pool is not found for a client hash 2023-11-29 13:17:04 -05:00

View File

@ -359,8 +359,11 @@ public class TunnelPoolManager implements TunnelManagerFacade {
TunnelPool pool = _clientInboundPools.get(client);
if (pool != null)
return pool.getSettings();
else
else {
if (_log.shouldLog(Log.DEBUG))
_log.debug("No inbound tunnel pool found for " + client);
return null;
}
}
public TunnelPoolSettings getOutboundSettings(Hash client) {