In the qooxdoo tutorial we see this code:
if (qx.core.Environment.get("qx.debug"))
{
qx.log.appender.Native;
qx.log.appender.Console;
}
But the two statements in braces appear to simply be accessing some attribute by traversing a namespace hierarchy - they arent calling a function.
How can those 2 statements actually turn on logging?
This two statements make the two classes as required for the dependency analysis which then register themselfs in their defer blocks [1]. This way, a variant dependent dependency is managed.
[1] https://github.com/qooxdoo/qooxdoo/blob/master/framework/source/class/qx/log/appender/Native.js#L75