* I2CP: Change a log error to a warning (ticket #353)
This commit is contained in:
@ -38,8 +38,13 @@ public class I2PSessionDemultiplexer implements I2PSessionMuxedListener {
|
||||
l.messageAvailable(session, msgId, size, proto, fromport, toport);
|
||||
else {
|
||||
// no listener, throw it out
|
||||
if (_listeners.isEmpty()) {
|
||||
if (_log.shouldLog(Log.WARN))
|
||||
_log.warn("No listeners for incoming message");
|
||||
} else {
|
||||
_log.error("No listener found for proto: " + proto + " port: " + toport + " msg id: " + msgId +
|
||||
" from pool of " + _listeners.size() + " listeners");
|
||||
}
|
||||
try {
|
||||
session.receiveMessage(msgId);
|
||||
} catch (I2PSessionException ise) {}
|
||||
|
@ -1,5 +1,6 @@
|
||||
2010-12-11 zzz
|
||||
* Build: Fix 'ant distclean poupdate' again
|
||||
* I2CP: Change a log error to a warning (ticket #353)
|
||||
* i2psnark:
|
||||
- Restore text (ticket #273)
|
||||
- Fix several HTML errors (ticket #273)
|
||||
@ -22,6 +23,7 @@
|
||||
|
||||
2010-12-10 Mathiasdm
|
||||
* I2PTunnel: Fixed up security fix.
|
||||
|
||||
2010-12-07 Mathiasdm
|
||||
* I2PTunnel: Security fix: change server reply
|
||||
to return 'I2PServer' instead of the actual servername.
|
||||
|
Reference in New Issue
Block a user