Skip to content

Commit

Permalink
remove "warning" in error text
Browse files Browse the repository at this point in the history
  • Loading branch information
udoliess committed Mar 11, 2016
1 parent 5cb7af0 commit 9a40a47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions baco/Copy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9a40a47

Please sign in to comment.