Skip to content

Commit

Permalink
resilience: fix alarm log level
Browse files Browse the repository at this point in the history
The log level on this alarm was obviously set back to trace
(after a debugging session) by mistake.

The patch just changes it back from TRACE to ERROR.

Target: master
Request: 2.16
Acked-by: Paul
  • Loading branch information
alrossi committed Jul 22, 2016
1 parent 2baf078 commit 25a125d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -119,7 +119,7 @@ public void taskAborted(PnfsId pnfsId,
maxRetries), e);
}

LOGGER.trace(AlarmMarkerFactory.getMarker(
LOGGER.error(AlarmMarkerFactory.getMarker(
PredefinedAlarm.FAILED_REPLICATION,
pnfsId.toString()),
ABORT_REPLICATION_LOG_MESSAGE, pnfsId,
Expand Down

0 comments on commit 25a125d

Please sign in to comment.