Skip to content

Commit

Permalink
output errors on console
Browse files Browse the repository at this point in the history
Signed-off-by: Emmanuel Mathot <[email protected]>
  • Loading branch information
emmanuelmathot committed Sep 10, 2015
1 parent 7838983 commit a3d2f09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static void Main(string[] args) {
}

} catch (Exception e) {
log.Error(string.Format("{0} : {1} {2}", e.Source, e.Message, e.HelpLink));
Console.Error.WriteLine(string.Format("{0} : {1} {2}", e.Source, e.Message, e.HelpLink));
Environment.ExitCode = 1;
return;
}
Expand Down

0 comments on commit a3d2f09

Please sign in to comment.