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

Commit 42e11a6

Browse files
Removing log message
1 parent 4971e3e commit 42e11a6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/GitHub.Api/Extensions/FileSystemExtensions.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ public static string CalculateFolderMD5(this IFileSystem fileSystem, string path
4141
{
4242
//https://stackoverflow.com/questions/3625658/creating-hash-for-folder
4343

44-
Logging.Trace("Calculating MD5 for folder: {0}", path);
45-
4644
var filePaths = fileSystem.GetFiles(path, "*", SearchOption.AllDirectories)
4745
.OrderBy(p => p)
4846
.ToArray();
@@ -67,8 +65,6 @@ public static string CalculateFolderMD5(this IFileSystem fileSystem, string path
6765
//Handles empty filePaths case
6866
md5.TransformFinalBlock(new byte[0], 0, 0);
6967

70-
Logging.Trace("Completed Calculating MD5 for folder: {0}", path);
71-
7268
return BitConverter.ToString(md5.Hash).Replace("-", "").ToLower();
7369
}
7470
}

0 commit comments

Comments
 (0)