-
Notifications
You must be signed in to change notification settings - Fork 117
Split Queue Server into modular network, monitor, and edit-control packages #3698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
…un engine service
… file for api key
merge master
| return result != null ? result.__tojava__(Object.class) : null; | ||
|
|
||
| } catch (Exception e) { | ||
| LOG.log(Level.FINE, "Jython script execution failed: " + e.getMessage()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of
LOG.log(Level.FINE, "Jython script execution failed: " + e.getMessage());
it's generally better to use
LOG.log(Level.FINE, "Jython script execution failed", e);
This will show the message, if there is one, plus the complete stack trace.
On the other hand, e.getMessage() may return null and without a stack trace you then wonder where/what/why happened.
Summary
network,monitor,edit-control