diff --git a/Machine.Specifications.ConsoleRunner/ExceptionReporter.cs b/Machine.Specifications.ConsoleRunner/ExceptionReporter.cs index a688522..b020ced 100644 --- a/Machine.Specifications.ConsoleRunner/ExceptionReporter.cs +++ b/Machine.Specifications.ConsoleRunner/ExceptionReporter.cs @@ -13,7 +13,7 @@ public ExceptionReporter(IConsole console) public void ReportException(Exception ex) { - _console.WriteLine(ex.Message); + _console.WriteLine("{0}", ex); } } } diff --git a/history.txt b/history.txt index a371471..06a840a 100644 --- a/history.txt +++ b/history.txt @@ -1,2 +1,3 @@ -Machine.Specifications.Runner.Console x +Machine.Specifications.Runner.Console 0.9.1 ----------------------------- +-improved reporting in case of unhandled exception: instead of only Exception.Message, entire Exception with stack-trace is printed to the console.