Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 693c67b

Browse files
Tweaking log messages
1 parent 524c478 commit 693c67b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/GitHub.Api/Installer/UnzipTask.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,11 @@ protected override void Run(bool success)
3838

3939
private void UnzipArchive()
4040
{
41-
Logger.Trace("Zip File: {0}", archiveFilePath);
42-
Logger.Trace("Target Path: {0}", extractedPath);
41+
Logger.Trace("Unzip File: {0} to Path: {1}", archiveFilePath, extractedPath);
4342

4443
zipHelper.Extract(archiveFilePath, extractedPath, Token, zipFileProgress, estimatedDurationProgress);
4544

46-
Logger.Trace("Completed");
45+
Logger.Trace("Completed Unzip");
4746
}
4847
}
4948
}

0 commit comments

Comments
 (0)