From 9fec2e5543c9a82ac1063e26cc5e25e2c5b83bc5 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Sat, 27 Apr 2019 00:54:29 +0200 Subject: [PATCH] Lower log level for method called every time in service main loop Relates to #20 --- ATxCommon/StorageStatus.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ATxCommon/StorageStatus.cs b/ATxCommon/StorageStatus.cs index cf8006e..4a3078c 100644 --- a/ATxCommon/StorageStatus.cs +++ b/ATxCommon/StorageStatus.cs @@ -138,7 +138,7 @@ namespace ATxCommon if (TimeUtils.SecondsSince(_lastUpdateFreeSpace) < UpdateDelta) return; - Log.Debug("Updating storage status: checking free disk space..."); + Log.Trace("Updating storage status: checking free disk space..."); foreach (var drive in _drives) { try { drive.FreeSpace = new DriveInfo(drive.DriveName).TotalFreeSpace; -- GitLab