Right now, Base.DEBUG is just set to true if DEBUG is set in the environment. It should be set to the actual value.
|
static public boolean DEBUG = System.getenv().containsKey("DEBUG"); |
Looking at Base.DEBUG setting it to false would still result in it I being true as it just checks if the key exists in the [env]
Originally posted by @Stefterv in #1239 (comment)