Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Borecki committed Jul 24, 2019
1 parent eea83a5 commit 62ce85d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions LZXCompactLightEngine/LZXCompactLightEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ public void Process(string path, string[] skipFileExtensionsArr)

StringBuilder statStr = new StringBuilder();


Logger.Log(
$"Stats: {Environment.NewLine}" +
$"Files skipped by attributes: {fileCountSkippedByAttributes}{Environment.NewLine}" +
Expand All @@ -193,7 +192,7 @@ public void Process(string path, string[] skipFileExtensionsArr)
$"Total files visited: {totalFilesVisited}{Environment.NewLine}" +
$"Files in db: {fileDict?.Count ?? 0}{Environment.NewLine}" +
$"Drive capacity: {DriveUtils.GetMemoryString(DriveUtils.GetDriveCapacity(path))}{Environment.NewLine}" +
$"Approx space saved during this session: {DriveUtils.GetMemoryString(diskFreeSpace1 - diskFreeSpace0)}{Environment.NewLine}"
$"Approx space saved during this session: {DriveUtils.GetMemoryString(spaceSavedThisSession)}{Environment.NewLine}"
, 2, LogFlags.General);

if (IsElevated)
Expand Down

0 comments on commit 62ce85d

Please sign in to comment.