use of ch.qos.logback.core.recovery.RecoveryCoordinator in project dropwizard by dropwizard.
the class ResilientOutputStreamBase method postIOFailure.
private void postIOFailure(IOException e) {
addStatusIfCountNotOverLimit(new ErrorStatus("IO failure while writing to " + getDescription(), this, e));
presumedClean = false;
if (recoveryCoordinator == null) {
recoveryCoordinator = new RecoveryCoordinator();
}
}
Aggregations