Start using Avo Visual Debugger in code

1 minute read

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

Accessing the web debugger

The Web Debugger is on by default in development.

To disable the Web Debugger in development provide webDebugger = false to initAvo options:

JavaScript
Copy
1
Avo.initAvo({ webDebugger: false, ... }, ...);

To access it in production add the ?avo_debug=1 query parameter to the URL.