Use debug logging for now by default

This commit is contained in:
Fahad
2025-06-13 19:34:35 +04:00
parent dda4f4bc7f
commit ebf5cfaa9e
3 changed files with 5 additions and 5 deletions

View File

@@ -58,11 +58,11 @@ DEFAULT_THINKING_MODE_THINKDEEP=high
# REDIS_URL=redis://redis:6379/0
# Optional: Logging level (DEBUG, INFO, WARNING, ERROR)
# DEBUG: Shows detailed operational messages for troubleshooting
# INFO: Shows general operational messages (default)
# DEBUG: Shows detailed operational messages for troubleshooting (default)
# INFO: Shows general operational messages
# WARNING: Shows only warnings and errors
# ERROR: Shows only errors
LOG_LEVEL=INFO
LOG_LEVEL=DEBUG
# Optional: Project root override for file sandboxing
# If set, overrides the default sandbox directory

View File

@@ -44,7 +44,7 @@ services:
# Use HOME not PWD: Claude needs access to any absolute file path, not just current project,
# and Claude Code could be running from multiple locations at the same time
- WORKSPACE_ROOT=${WORKSPACE_ROOT:-${HOME}}
- LOG_LEVEL=${LOG_LEVEL:-INFO}
- LOG_LEVEL=${LOG_LEVEL:-DEBUG}
- PYTHONUNBUFFERED=1
volumes:
- ${HOME:-/tmp}:/workspace:ro

View File

@@ -50,7 +50,7 @@ from tools.models import ToolOutput
# Configure logging for server operations
# Can be controlled via LOG_LEVEL environment variable (DEBUG, INFO, WARNING, ERROR)
log_level = os.getenv("LOG_LEVEL", "INFO").upper()
log_level = os.getenv("LOG_LEVEL", "DEBUG").upper()
# Create timezone-aware formatter