Verbose - Prebuilt
The verbose parameter controls how much diagnostic information the Prebuilt SDK emits. Log levels are hierarchical - higher levels automatically include logs from lower levels.
Verbose Level Comparison
| Level | Description | Includes |
|---|---|---|
| NONE (Default) | Disables all logging output. | – |
| ERROR | Error logs only. | ERROR |
| WARN | Warning and error logs. | WARN, ERROR |
| INFO | High-level SDK activity and state transitions. | INFO, WARN, ERROR |
| DEBUG | INFO logs plus detailed diagnostic information. | DEBUG, INFO, WARN, ERROR |
| ALL | All logs, including real-time events. | ALL |
How it works ?
- Set
verbosein the meeting config to print SDK logs in the browser console.
Verbose Attributes
index.html
const config = {
// ... other configuration
verbose: "DEBUG", // "ERROR" | "WARN" | "INFO" | "DEBUG" | "ALL" | "NONE"
// ...
};
info
verbose is available from v0.3.46 of the Prebuilt SDK.
Got a Question? Ask us on discord

