show class name in log message

This commit is contained in:
honfika@gmail.com
2015-02-25 23:13:55 +01:00
parent c17b699d58
commit 7e89a2c721
7 changed files with 20 additions and 13 deletions

View File

@@ -857,7 +857,7 @@ public class Helper {
writer.appendNoHilight(" * ").appendNoHilight(decompilationErrorAdd).newLine();
}
writer.appendNoHilight(" * ").appendNoHilight(AppResources.translate("decompilationError.errorType")).
appendNoHilight(": " + ex.getClass().getSimpleName()).newLine();
appendNoHilight(": " + ex.getClass().getSimpleName() + " (" + ex.getMessage() + ")").newLine();
writer.appendNoHilight(" */").newLine();
writer.appendNoHilight("throw new flash.errors.IllegalOperationError(\"").
appendNoHilight(AppResources.translate("decompilationError.error.description")).