From b6db09269c39d16b3c8a50c282422f495b9380bb Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Tue, 13 Mar 2018 13:26:17 +0100
Subject: [PATCH] Logging changes

Refers to #36
---
 ATxService/AutoTx.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ATxService/AutoTx.cs b/ATxService/AutoTx.cs
index cf77886..1252642 100644
--- a/ATxService/AutoTx.cs
+++ b/ATxService/AutoTx.cs
@@ -524,14 +524,14 @@ namespace ATxService
         /// Event handler for CPU load dropping below the configured limit.
         /// </summary>
         private void OnLoadBelowLimit(object sender, EventArgs e) {
-            Log.Warn("CPU load is below given limit.");
+            Log.Trace("Received a low-CPU-load event!");
         }
 
         /// <summary>
         /// Event handler for CPU load exceeding the configured limit.
         /// </summary>
         private void OnLoadAboveLimit(object sender, EventArgs e) {
-            Log.Warn("High CPU load detected!");
+            Log.Trace("Received a high-CPU-load event!");
         }
 
         /// <summary>
-- 
GitLab