diff --git a/ATxCommon/StorageStatus.cs b/ATxCommon/StorageStatus.cs index f8c78e7479c7fd6562db1e3f1e79d38e9086651a..f6002dd0bfed9b2917c329d22f075932f5b663b2 100644 --- a/ATxCommon/StorageStatus.cs +++ b/ATxCommon/StorageStatus.cs @@ -63,8 +63,8 @@ namespace ATxCommon /// </summary> /// <returns>A human-readable (i.e. formatted) string with details on the grace location /// and all expired directories, grouped by the topmost level (i.e. user dirs).</returns> - public string ExpiredUserDirsSummary() { Update(); + public string GraceLocationSummary() { var summary = "------ Grace location status, " + $"threshold: {_gracePeriod} days ({_gracePeriodHuman}) ------\n\n" + $" - location: [{_graceLocation}]\n"; @@ -155,7 +155,7 @@ namespace ATxCommon /// </summary> /// <returns>Human-readable string with details on free space + grace location.</returns> public string Summary() { - return $"{SpaceSummary()}\n{ExpiredUserDirsSummary()}"; + return $"{SpaceSummary()}\n{GraceLocationSummary()}"; } } }