Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'IndexUpdateManager.cs')
-rw-r--r--IndexUpdateManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/IndexUpdateManager.cs b/IndexUpdateManager.cs
index 2a2279e..190b0bf 100644
--- a/IndexUpdateManager.cs
+++ b/IndexUpdateManager.cs
@@ -22,7 +22,7 @@ namespace macdoc
public IndexUpdateManager (IEnumerable<string> sourceFiles, string baseUserDir)
{
- Console.WriteLine ("Going to verify [{0}]", sourceFiles.Aggregate ((e1, e2) => e1 + ", " + e2));
+ Logger.Log ("Going to verify [{0}]", sourceFiles.Aggregate ((e1, e2) => e1 + ", " + e2));
this.baseUserDir = baseUserDir;
this.sourceFiles = sourceFiles;
}
@@ -61,7 +61,7 @@ namespace macdoc
md5sums[source] = hash;
}
- Console.WriteLine ("We have a {0} fresh index", isFresh);
+ Logger.Log ("Index fresh? {0}", isFresh ? "yes" : "no");
return IsFresh = isFresh;
});