You can unregister the native (which is the browser’s console) logger altogether in Wisej.onLoad() in your main html page.
<script>
Wisej.onLoad = function() {
qx.log.Logger.unregister(qx.log.appender.Native);
}
</script>
This will disable all logging to the native console. You may also register a custom logger in the same way.
http://www.qooxdoo.org/current/api/#qx.log.appender
So – for performance improvements and security reasons, is it advisable to disable the console outputs with the method suggested ?
At least on Production systems anyway.
I mean, how to disable similar qooxdoo warnings, some way or config to disable or comment console.warn related with “qooxdoo missing appearances”
Thanks in advance
In Chrome’s console there is a dropdown where you can enable/disable different logging level.
FF and IE have a similar selection. The javascript console recognizes: Info, Warning, Error, Debug, Log.
Please login first to submit.