diff --git a/baco/Copy.cs b/baco/Copy.cs index 1444b1b..0c4e5c7 100644 --- a/baco/Copy.cs +++ b/baco/Copy.cs @@ -83,12 +83,12 @@ public static void Do(string source) if (check.TryGetValue(key, out chk)) { if (hash != chk) - Logger.Log("warning: corrupt file", Path.GetFullPath(sourceFile)); + Logger.Log("corrupt file", Path.GetFullPath(sourceFile)); check.Remove(key); } else { - Logger.Log("warning: file without checksum", Path.GetFullPath(sourceFile)); + Logger.Log("file without checksum", Path.GetFullPath(sourceFile)); } } string cat; @@ -127,7 +127,7 @@ public static void Do(string source) Hash.Done(dst); if (check != null) foreach (var kvp in check) - Logger.Log("warning: checksum without file", Path.GetFullPath(kvp.Key)); + Logger.Log("checksum without file", Path.GetFullPath(kvp.Key)); last = s; } else