Websockets (Verbose Control)
Verbose Levels
Level
Value
Description
Usage
from openalgo import api
# Silent mode (default) - no SDK output
client = api(api_key="...", host="...", ws_url="...", verbose=False)
# Basic logging - connection/subscription info
client = api(api_key="...", host="...", ws_url="...", verbose=True)
# Full debug - all data updates
client = api(api_key="...", host="...", ws_url="...", verbose=2)Test Example
Expected Output
verbose=False (Silent)
verbose=True (Basic)
verbose=2 (Full Debug)
Log Categories
Tag
Meaning
Last updated