Skip to content
Snippets Groups Projects
Commit eade424e authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Reduce log level for CPU load summary.

Refers to #36
parent 74ca5144
No related branches found
No related tags found
No related merge requests found
......@@ -138,8 +138,8 @@ namespace ATxCommon.Monitoring
finally {
_monitoringTimer.Enabled = true;
}
Log.Info("CPU load: {0:0.0} {1}", _loadReadings[3], _loadReadings[3] < Limit ? " [" + _behaving + "]" : "");
Log.Trace("load values: {0}, average: {1}", string.Join(", ", _loadReadings), _load);
Log.Trace("CPU load: {0:0.0} {1}", _loadReadings[3],
_loadReadings[3] < Limit ? " [" + _behaving + "]" : "");
}
}
......
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