print more info when jad command failed. #2148

This commit is contained in:
hengyunabc
2022-04-24 17:13:48 +08:00
parent 20d0faab37
commit d6c99db2f6
@@ -200,7 +200,7 @@ public class JadCommand extends AnnotatedCommand {
return ExitStatus.success();
} catch (Throwable t) {
logger.error("jad: fail to decompile class: " + c.getName(), t);
return ExitStatus.failure(-1, "jad: fail to decompile class: " + c.getName());
return ExitStatus.failure(-1, "jad: fail to decompile class: " + c.getName() + ", please check $HOME/logs/arthas/arthas.log for more details.");
}
}