Skip to content
This repository was archived by the owner on Aug 23, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Machine.Specifications.ConsoleRunner/ExceptionReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public ExceptionReporter(IConsole console)

public void ReportException(Exception ex)
{
_console.WriteLine(ex.Message);
_console.WriteLine("{0}", ex);
}
}
}
3 changes: 2 additions & 1 deletion history.txt
Original file line number Diff line number Diff line change
@@ -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.