mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
print more info when jad command failed. #2148
This commit is contained in:
@@ -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.");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user