Skip to content

scoutica logs

Every time scoutica scan runs an AI extraction, it writes a log file. logs is how you read those back: view the most recent run, list the whole history, or clear them out. It’s the first place to look when a scan produced something unexpected and you want to see what the AI actually did.

Terminal window
scoutica logs [--list | --clear]
Invocation Behavior
scoutica logs (Default) Show the most recent scan log in full.
scoutica logs --list List up to the 20 most recent scan logs, newest first (with size and timestamp). Alias: scoutica logs list.
scoutica logs --clear Delete all scan_*.log files and report how many were removed. Alias: scoutica logs clear.

If there are no logs to show or list, logs tells you to run scoutica scan first.

With no arguments, logs finds the newest scan_*.log, prints its path, and dumps its contents:

Terminal window
scoutica logs
╔═══════════════════════════════════════════════════════╗
║ Latest Scan Log ║
╚═══════════════════════════════════════════════════════╝
File: /home/alice/.scoutica/logs/scan_20260701_142233.log
[scan output...]
Terminal window
scoutica logs --list

Shows the 20 most recent scan logs (newest first) so you can see how many runs happened and when.

Terminal window
scoutica logs --clear

Removes every scan_*.log file and prints the count cleared. If there’s nothing to clear, it says so.