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)
Right now, Base.DEBUG is just set to true if DEBUG is set in the environment. It should be set to the actual value.
processing4/app/src/processing/app/Base.java
Line 68 in bdbd025
Looking at
Base.DEBUGsetting 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)