Skip to content

Commit

Permalink
handle review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Orban <lorban@bitronix.be>
  • Loading branch information
lorban committed Jun 13, 2022
1 parent d144c54 commit e5e31f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -189,10 +189,10 @@ public boolean consumeAll()
{
assertLocked();
Throwable x = UNCONSUMED_CONTENT_EXCEPTION;
if (LOG.isDebugEnabled())
if (LOG.isTraceEnabled())
{
x = new StaticException("Unconsumed content");
LOG.debug("consumeAll {}", this, x);
LOG.trace("consumeAll {}", this, x);
}
failCurrentContent(x);
// A specific HttpChannel mechanism must be used as the following code
Expand Down
Expand Up @@ -31,4 +31,4 @@ public StaticException(String message)
// Make sure to call the super constructor that disables suppressed exception.
super(message, null, false, true);
}
}
}

0 comments on commit e5e31f2

Please sign in to comment.