Features: - JSON-formatted logs for easy parsing and analysis - Rotating log files (prevents disk space issues) * ajarbot.log: All events, 10MB rotation, 5 backups * errors.log: Errors only, 5MB rotation, 3 backups * tools.log: Tool execution tracking, 10MB rotation, 3 backups Tool Execution Tracking: - Every tool call logged with inputs, outputs, duration - Success/failure status tracking - Performance metrics (execution time in milliseconds) - Error messages captured with full context Logging Integration: - tools.py: All tool executions automatically logged - Structured logger classes with context preservation - Console output (human-readable) + file logs (JSON) - Separate error log for quick issue identification Log Analysis: - JSON format enables programmatic analysis - Easy to search for patterns (max tokens, iterations, etc.) - Performance tracking (slow tools, failure rates) - Historical debugging with full context Documentation: - LOGGING.md: Complete usage guide - Log analysis examples with jq commands - Error pattern reference - Maintenance and integration instructions Benefits: - Quick error diagnosis with separate errors.log - Performance monitoring and optimization - Historical analysis for troubleshooting - Automatic log rotation (max 95MB total) Updated .gitignore to exclude logs/ directory Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
69 lines
1.0 KiB
Plaintext
69 lines
1.0 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets and local config
|
|
*.local.yaml
|
|
*.local.json
|
|
.env
|
|
.env.local
|
|
config/scheduled_tasks.yaml # Use scheduled_tasks.example.yaml instead
|
|
|
|
# Memory workspace (optional - remove if you want to version control)
|
|
memory_workspace/memory/*.md
|
|
memory_workspace/memory_index.db
|
|
memory_workspace/users/*.md # User profiles (jordan.md, etc.)
|
|
memory_workspace/vectors.usearch
|
|
memory_workspace/obsidian/ # Zettelkasten vault (personal notes)
|
|
memory_workspace/SOUL.md # Personal config (use SOUL.example.md)
|
|
memory_workspace/MEMORY.md # Personal memory (use MEMORY.example.md)
|
|
|
|
# User profiles (personal info)
|
|
users/
|
|
|
|
# Usage tracking
|
|
usage_data.json
|
|
|
|
# Google OAuth tokens
|
|
config/google_credentials.yaml
|
|
config/google_oauth_token.json
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|