StandardSession change LOG.warn in flush() back to LOG.debug

This commit is contained in:
Thomas Becker 2012-12-10 11:12:19 +01:00
parent 6567940471
commit e299169ee3
1 changed files with 1 additions and 1 deletions

View File

@ -929,7 +929,7 @@ public class StandardSession implements ISession, Parser.Listener, Dumpable
return;
flushing = true;
LOG.warn("Flushing {}, {} frame(s) in queue",frameBytes,queue.size());
LOG.debug("Flushing {}, {} frame(s) in queue",frameBytes,queue.size());
}
write(buffer, frameBytes);
}