diff --git a/README.md b/README.md index f2e5807..61f9954 100644 --- a/README.md +++ b/README.md @@ -553,6 +553,17 @@ pyspector scan ./my-python-project --supply-chain +
+How do I enable debug output? + +Use `--debug` to print verbose internal details during analysis, which is useful for troubleshooting false positives or unexpected results: + +```bash +pyspector scan ./my-python-project --debug +``` + +
+
How can I integrate PySpector into CI?