@smplkit/sdk 1.5.1 → 1.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -227,6 +227,16 @@ try {
227
227
  | `SmplConnectionError` | Network connectivity issue |
228
228
  | `SmplError` | Any other SDK error |
229
229
 
230
+ ## Debug Logging
231
+
232
+ Set `SMPLKIT_DEBUG=1` to enable verbose diagnostic output to stderr. This is useful for troubleshooting real-time level changes, WebSocket connectivity, and SDK initialization. Debug output bypasses the managed logging framework and writes directly to stderr.
233
+
234
+ ```bash
235
+ SMPLKIT_DEBUG=1 node my-app.js
236
+ ```
237
+
238
+ Accepted values: `1`, `true`, `yes` (case-insensitive). Any other value (or unset) disables debug output.
239
+
230
240
  ## Documentation
231
241
 
232
242
  - [Getting Started](https://docs.smplkit.com/getting-started)