Change an Application's Log Level
You might sometimes want to change the app's log level to change output in the browser console. For example, the default info log level for console messages may be useful during development stages, but once the app goes into production, you might want to reduce console output to only critical information.
- To change an application's log level:
- Run your app and view output in the browser's console.
- It's also possible to dynamically set the app's runtime log level in your browser's current session to temporarily troubleshoot issues. You do this using the
globalThis.vbInitConfig.LOG.level
property in your browser's console. Here's how to do this in Chrome: