Skip to content

🛠️ Maintenance

Renan Altendorf edited this page Feb 8, 2025 · 1 revision

Logging System

Logs are stored in app/logs/*.log with automatic rotation every 7 days.

Log settings available in .env or docker:

LOG_LEVEL=WARNING

Available log levels:

  • DEBUG: Detailed information for debugging
  • INFO: General information about operations
  • WARNING: Warnings that deserve attention (default)
  • ERROR: Errors that do not interrupt operation
  • CRITICAL: Critical errors that need immediate attention

View the application logs:

docker-compose logs app
# or directly from the log file
cat app/logs/*.log

Clearing the cache

When you need to clear:

docker-compose exec app rm -rf /app/cache/*

If you have S3 enabled, you must clean it directly with the provider.

Clone this wiki locally