Don't print ERROR since the logger also adds it

This commit is contained in:
de4dot 2012-12-08 12:33:01 +01:00
parent 219736651d
commit a66ee5ff39

View File

@ -84,7 +84,7 @@ namespace de4dot.cui {
exitCode = ex.code;
}
catch (UserException ex) {
Logger.Instance.LogErrorDontIgnore("ERROR: {0}", ex.Message);
Logger.Instance.LogErrorDontIgnore("{0}", ex.Message);
exitCode = 1;
}
catch (Exception ex) {