
13 Apr
2010
13 Apr
'10
8:42 a.m.
Hi logback-dev, I wonder why ResilientOutputStreamBase does not try to write the log message after attempt the recovery? What's the consideration here? public void write(byte b[], int off, int len) { if (isPresumedInError()) { if (!recoveryCoordinator.isTooSoon()) { attemptRecovery(); } return; // return regardless of the success of the recovery attempt } try { os.write(b, off, len); postSuccessfulWrite(); } catch (IOException e) { postIOFailure(e); } } Thanks very much, Tom