From a78653f2079f6f3eeb1b5681b8b35fcf9e93373c Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 17 Oct 2017 23:34:31 +0100 Subject: [PATCH] If debug is enabled show more information about catched exception in analyze command. --- DiscImageChef/Commands/Analyze.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DiscImageChef/Commands/Analyze.cs b/DiscImageChef/Commands/Analyze.cs index fbb438cb..b2eaad56 100644 --- a/DiscImageChef/Commands/Analyze.cs +++ b/DiscImageChef/Commands/Analyze.cs @@ -128,6 +128,7 @@ namespace DiscImageChef.Commands { DicConsole.ErrorWriteLine("Unable to open image format"); DicConsole.ErrorWriteLine("Error: {0}", ex.Message); + DicConsole.DebugWriteLine("Analyze command", "Stack trace: {0}", ex.StackTrace); return; }