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

Commit be41884

Browse files
Fixing log message
1 parent 9223ade commit be41884

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/GitHub.Api/Installer/CopyHelper.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ public static class CopyHelper
1212

1313
public static void Copy(NPath fromPath, NPath toPath)
1414
{
15-
Logger.Trace("Error copying from " + fromPath + " to " + toPath + ".");
15+
Logger.Trace("Copying from " + fromPath + " to " + toPath + ".");
1616

1717
try
1818
{
19-
2019
CopyFolder(fromPath, toPath);
2120
}
2221
catch (Exception ex1)
@@ -48,7 +47,7 @@ public static void CopyFolder(NPath fromPath, NPath toPath)
4847

4948
public static void CopyFolderContents(NPath fromPath, NPath toPath)
5049
{
51-
Logger.Trace("CopyFolderContents fromPath: {0} toPath:{1}", fromPath.ToString(), toPath.ToString());
50+
Logger.Trace("CopyFolder Contents fromPath: {0} toPath:{1}", fromPath.ToString(), toPath.ToString());
5251
toPath.DeleteContents();
5352
fromPath.MoveFiles(toPath, true);
5453
}

0 commit comments

Comments
 (0)