diff --git a/ATxCommon/Monitoring/Cpu.cs b/ATxCommon/Monitoring/Cpu.cs index de4d9558690b40de77b551adb3137a9111b2520b..df034c73ea6c6d9dddfae9c5f44d83c5bddb1fcb 100644 --- a/ATxCommon/Monitoring/Cpu.cs +++ b/ATxCommon/Monitoring/Cpu.cs @@ -117,7 +117,7 @@ namespace ATxCommon.Monitoring if (_behaving > _probation) { // this means the load was considered as "low" before, so raise an event: OnLoadAboveLimit(); - Log.Debug("CPU load ({0}) violating limit ({1})!", _loadReadings[3], _limit); + Log.Debug("CPU load ({0:0.0}) violating limit ({1})!", _loadReadings[3], _limit); } else if (_behaving > 0) { // this means we were still in probation, so no need to trigger again... Log.Debug("Resetting behaving counter to 0 (was {0}).", _behaving);