You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
litmusctl supports a `--verbose` (or `-v`) flag to enable detailed logging during command execution. This is useful for debugging and understanding what's happening behind the scenes.
292
+
293
+
### Usage
294
+
295
+
Add the `--verbose` or `-v` flag to any litmusctl command:
296
+
297
+
```shell
298
+
litmusctl <command> --verbose
299
+
# or
300
+
litmusctl <command> -v
301
+
```
302
+
303
+
### What Gets Logged
304
+
305
+
When verbose mode is enabled, litmusctl will print additional information including:
306
+
307
+
- API endpoints being accessed
308
+
- HTTP request methods and payloads
309
+
- Response status codes
310
+
- Internal processing steps
311
+
- Project and resource details during operations
312
+
313
+
### Examples
314
+
315
+
```shell
316
+
# Get projects with verbose logging
317
+
litmusctl get projects --verbose
318
+
319
+
# Create a project with detailed logs
320
+
litmusctl create project --name my-project -v
321
+
322
+
# Connect chaos infrastructure with debug information
0 commit comments