Jetty9 - More logging.
This commit is contained in:
parent
cac1c933c3
commit
2816187e0d
|
@ -103,7 +103,9 @@ abstract public class WriteFlusher
|
|||
if (!isTransitionAllowed(previous,next))
|
||||
throw new IllegalStateException();
|
||||
|
||||
return _state.compareAndSet(previous,next);
|
||||
boolean updated = _state.compareAndSet(previous, next);
|
||||
LOG.debug("State update {} -> {} succeeded: {}", previous, next, updated);
|
||||
return updated;
|
||||
}
|
||||
|
||||
private void fail(PendingState<?> pending)
|
||||
|
|
Loading…
Reference in New Issue