Skip to content

Cannot enable debug mode #60

@bgooren

Description

@bgooren

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...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions