feat: add quiet/verbose modes with command logging

This commit is contained in:
2026-01-01 18:05:13 -05:00
parent 2e55677e35
commit 5ebf256a58
5 changed files with 337 additions and 31 deletions

View File

@@ -49,6 +49,16 @@ vid-repair fix --policy aggressive /path/to/videos
vid-repair scan --json /path/to/videos
```
### Verbosity 🔈
```bash
# More detail (commands + error lines)
vid-repair fix -v /path/to/videos
# Less detail (summary only)
vid-repair scan -q /path/to/videos
```
**Note:** `fix` always performs a full scan first, then repairs only if issues are found.
Use `scan` when you just want a report without making changes.