Streaming: Change pushBackRTO() log error to warn (ticket #2739)

This commit is contained in:
zzz
2020-05-14 18:47:54 +00:00
parent fad9d0e3da
commit 40b312d7c1
3 changed files with 7 additions and 3 deletions

View File

@ -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);
}