forked from I2P_Developers/i2p.i2p
Streaming: Change pushBackRTO() log error to warn (ticket #2739)
This commit is contained in:
@ -1458,7 +1458,8 @@ class Connection {
|
||||
|
||||
public synchronized void pushBackRTO(int rto) {
|
||||
if (!_scheduled) {
|
||||
_log.log(Log.ERROR, Connection.this + " timer was not scheduled", new Exception());
|
||||
if (_log.shouldWarn())
|
||||
_log.warn(Connection.this + " timer was not scheduled", new Exception());
|
||||
}
|
||||
reschedule(rto, false);
|
||||
}
|
||||
|
Reference in New Issue
Block a user