If de4dot fails, tell the user to send me a link to the installer

Too many times some guy has asked me for help, I ask for the files
and I get nothing. No files => no help.
This commit is contained in:
de4dot 2012-11-28 20:21:59 +01:00
parent 492772c8df
commit 2f8bc9819f

View File

@ -91,7 +91,6 @@ namespace de4dot.cui {
if (printFullStackTrace()) {
printStackTrace(ex);
Logger.Instance.LogErrorDontIgnore("\nTry the latest version before reporting this problem!");
Logger.Instance.LogErrorDontIgnore("Send bug reports to de4dot@gmail.com or go to https://github.com/0xd4d/de4dot/issues");
}
else {
Logger.Instance.LogErrorDontIgnore("\n\n");
@ -99,8 +98,9 @@ namespace de4dot.cui {
Logger.Instance.LogErrorDontIgnore(" EX: {0} : message: {1}", ex.GetType(), ex.Message);
Logger.Instance.LogErrorDontIgnore("If it's a supported obfuscator, it could be a bug or a new obfuscator version.");
Logger.Instance.LogErrorDontIgnore("If it's an unsupported obfuscator, make sure the methods are decrypted!");
Logger.Instance.LogErrorDontIgnore("Send bug reports to de4dot@gmail.com or go to https://github.com/0xd4d/de4dot/issues");
}
Logger.Instance.LogErrorDontIgnore("Send bug reports to de4dot@gmail.com or go to https://github.com/0xd4d/de4dot/issues");
Logger.Instance.LogErrorDontIgnore("I will need the original files, so email me a link to the installer or a zip/rar file.");
exitCode = 1;
}