From 862c0216e10e92b1b8276e031d35e1a2a8a1376b Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Thu, 2 May 2019 11:53:15 +0200
Subject: [PATCH] Show count of expired subdirectories in grace location
 summary

Relates to #20
---
 ATxCommon/StorageStatus.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ATxCommon/StorageStatus.cs b/ATxCommon/StorageStatus.cs
index 5362f68..1556e17 100644
--- a/ATxCommon/StorageStatus.cs
+++ b/ATxCommon/StorageStatus.cs
@@ -105,7 +105,8 @@ namespace ATxCommon
                 }
             }
 
-            summary += $"\n - sum of expired folders: {Conv.BytesToString(totalSizeExpired)}\n";
+            summary += $"\n - summary: {ExpiredSubDirsCount} expired folders with a total size " +
+                       $"of {Conv.BytesToString(totalSizeExpired)}\n";
 
             return summary;
         }
-- 
GitLab