From ec9d911dc556a3a799725a3cdb04b447ac820ce3 Mon Sep 17 00:00:00 2001 From: de4dot Date: Thu, 24 May 2012 18:22:56 +0200 Subject: [PATCH] Update exception message --- de4dot.cui/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/de4dot.cui/Program.cs b/de4dot.cui/Program.cs index b5ff9e53..a3a5f5ac 100644 --- a/de4dot.cui/Program.cs +++ b/de4dot.cui/Program.cs @@ -86,7 +86,8 @@ namespace de4dot.cui { } else { Log.e("\n\n"); - Log.e("Hmmmm... something didn't work. Try the latest version. ({0})", ex.GetType()); + Log.e("Hmmmm... something didn't work. Try the latest version."); + Log.e(" EX: {0} : message: {1}", ex.GetType(), ex.Message); Log.e("If it's a supported obfuscator, it could be a bug or a new obfuscator version."); Log.e("If it's an unsupported obfuscator, make sure the methods are decrypted!"); Log.e("Send bug reports to de4dot@gmail.com or go to https://github.com/0xd4d/de4dot/issues");