In SoundProcessor, DEBUG is final and private. And there's no setDebugMode(boolean) and getDebugMode() methods.. it's not possible to activate debug mode on this class??? What should be done to fix that..
Well we could simply make it non final and add getter/setter. But as far as I consider it, the debug flags are only for the class'es developer. So he could simply set it to "true" in place. If you want some debug information triggered from user space, just set Xith3DDefaults.setDebugMode( true ).
Marvin