Currently the web visual debugger is only available when you use Avo functions.
Each Avo function will automatically show events in the debugger with timestamp and all the properties.
If Avo detects errors the visual debugger will highlight those.
Debuggers are disabled in the noop mode
The Web Debugger is on by default in development.
To disable the Web Debugger in development provide webDebugger = false
to initAvo options:
JavaScriptCopy1Avo.initAvo({ webDebugger: false, ... }, ...);
To access it in production add the ?avo_debug=1
query parameter to the URL.