Skip to content
Snippets Groups Projects
Commit c7756e5c authored by jakubs's avatar jakubs
Browse files

minor: change the log level of non-error situation from error to warn in AbstractCopyActivitySensor

SVN: 26284
parent ddc73423
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ public abstract class AbstractCopyActivitySensor implements IDescribingActivityS ...@@ -93,7 +93,7 @@ public abstract class AbstractCopyActivitySensor implements IDescribingActivityS
if (errorCount <= maxErrorsToIgnore) if (errorCount <= maxErrorsToIgnore)
{ {
timeOfLastReportedActivity = now; timeOfLastReportedActivity = now;
getMachineLog().error( getMachineLog().warn(
describeInactivity(now) describeInactivity(now)
+ String.format(" (error count: %d <= %d, goes unreported)", + String.format(" (error count: %d <= %d, goes unreported)",
errorCount, maxErrorsToIgnore)); errorCount, maxErrorsToIgnore));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment