Skip to content

Commit

Permalink
removed temporary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mifeet committed Jan 24, 2016
1 parent a54fd9e commit 96b8013
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/DirStructureCopy/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ private static void runCommandLineVersion(Arguments arguments, ResourceManager r
{
try
{
consoleWriter.WriteLine();
consoleWriter.WriteLine(String.Format(resources.GetString("startedProcessing"), arguments.SourceDirectory));
copier.CopyDirectoryStructure(new DirectoryInfo(arguments.SourceDirectory), () => false);
consoleWriter.WriteLine(String.Format(resources.GetString("finishedProcessing"), arguments.DestinationArchive));
Expand Down
4 changes: 2 additions & 2 deletions src/DirStructureCopy/StructureCopier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void CopyDirectoryStructure(DirectoryInfo sourceDir, Func<bool> stopCondi
{
throw new IOException("Source directory doesn't exist");
}
log(resources.GetString("startedProcessing"), sourceDir.FullName);
//log(resources.GetString("startedProcessing"), sourceDir.FullName);
copyDirectoryStructure(sourceDir, sourceDir, stopCondition);
}

Expand Down Expand Up @@ -264,7 +264,7 @@ public void Dispose()
disposed = true;
zipFile.Save(destinationPath);
zipFile.Dispose();
log(resources.GetString("finishedProcessing"), destinationPath);
//log(resources.GetString("finishedProcessing"), destinationPath);
}
}
}

0 comments on commit 96b8013

Please sign in to comment.