Tag-AI includes a comprehensive logging system that records application activities, errors, and diagnostic information. These logs are invaluable for troubleshooting issues and understanding what's happening behind the scenes.
The logging system is organized by component, with separate log files for different parts of the application. This makes it easier to track down specific issues.
Log files are stored in platform-specific locations:
%LOCALAPPDATA%\Tag-AI\Logs\
Example: C:\Users\Username\AppData\Local\Tag-AI\Logs\
~/Library/Logs/Tag-AI/
Example: /Users/Username/Library/Logs/Tag-AI/
~/.local/state/Tag-AI/logs/
Example: /home/username/.local/state/Tag-AI/logs/
If Tag-AI can't write to these standard locations, it may fall back to using a temporary directory. This is noted in the console output when the application starts.
Tag-AI creates several different log files:
app.log
- Contains general application events, startup information, and high-level operations.
main.log
- Main window and application lifecycle eventssetup.log
- Setup wizard operations and installation stepsphoto_ollama.log
- Local image processing with LLaVAphoto_gemini.log
- Cloud image processing with Gemini APIscan_window.log
- Scan interface operationspurge_window.log
- Purge missing files utility operationspaths.log
- File and directory path resolution informationFor each scanning session, a timestamped log is created:
scanner_YYYYMMDD_HHMMSS.log
Example: scanner_20240314_153042.log
These logs contain detailed information about a specific scanning session, making it easier to track down issues with particular scans.
Tag-AI log files use a standard format for each entry:
YYYY-MM-DD HH:MM:SS - LEVEL - MODULE - FUNCTION - MESSAGE
For example:
2024-03-14 15:30:42 - INFO - photo_ollama - process_file_worker - Processing image: C:\Photos\vacation.jpg
Tag-AI uses standard logging levels to indicate the importance of messages:
Look for entries with "success" or "completed" and INFO level:
2024-03-14 15:30:45 - INFO - photo_ollama - insert_data_into_db - ✅ Inserted data for C:\Photos\sunset.jpg
Warnings indicate non-critical issues that might need attention:
2024-03-14 15:31:02 - WARNING - photo_ollama - process_image_resized - ⚠️ Image too large, resizing to target size
Error entries indicate failures that prevented some operation:
2024-03-14 15:32:17 - ERROR - photo_ollama - calculate_file_hash - ❌ Error calculating hash for C:\Photos\corrupted.jpg: [Errno 13] Permission denied
Check setup.log
for detailed information about each step of the setup process. Look for ERROR
level entries indicating what might have failed.
For scan issues, examine the timestamped scanner logs and photo_ollama.log
or
photo_gemini.log
depending on your configuration. Key things to look for:
Database problems are typically logged with specific SQLite error codes. Common patterns:
When using Gemini API, check for:
For GPU-related issues, look for:
Tag-AI automatically manages log files to prevent them from growing too large:
By default, Tag-AI keeps logs for 24 hours before deleting them. You can modify this in the configuration:
log_retention_hours
value in the [settings]
sectionIf needed, you can manually clear logs:
Always close Tag-AI before manually deleting log files to avoid potential file lock issues.
Tag-AI creates a file named unable_to_do.txt
in its installation directory that lists images it
couldn't process. This file includes the full paths of problematic files for your reference.
For advanced users, directly examining the database can provide insights into issues. You can use tools like DB Browser for SQLite to open and inspect the database file. See Database Management for details.
When running Tag-AI from a terminal or command prompt, additional diagnostic information is printed to the console. This can be captured by redirecting output:
# Windows
tag-ai.exe > console_output.txt 2>&1
# macOS/Linux
./tag-ai > console_output.txt 2>&1
For issues with local processing, Ollama maintains its own logs at:
%LOCALAPPDATA%\ollama\logs
~/.ollama/logs
When contacting support about an issue, include: