We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I enable debug mode by setting the necessary system property, Scalr bails out due to a NullPointerException.
This is caused by line 148 in Scalr.java:
static { log(0, null, "Debug output ENABLED"); }
Since the second param (message) is null, the call to System.out.printf(message, params) throws an exception. It looks like that line should read
log(0, "Debug output ENABLED");
anyway...
The text was updated successfully, but these errors were encountered:
Fixed logging could not be enabled due to NPE.
1e8b8a2
Stupid mistake, fixed Issue #60 #60
Frustrating mistake; sorry about that.
Prepping a 4.1 release right now to fix this.
Sorry, something went wrong.
No branches or pull requests
When I enable debug mode by setting the necessary system property, Scalr bails out due to a NullPointerException.
This is caused by line 148 in Scalr.java:
Since the second param (message) is null, the call to System.out.printf(message, params) throws an exception.
It looks like that line should read
anyway...
The text was updated successfully, but these errors were encountered: