Use debug logging for now by default
This commit is contained in:
@@ -58,11 +58,11 @@ DEFAULT_THINKING_MODE_THINKDEEP=high
|
|||||||
# REDIS_URL=redis://redis:6379/0
|
# REDIS_URL=redis://redis:6379/0
|
||||||
|
|
||||||
# Optional: Logging level (DEBUG, INFO, WARNING, ERROR)
|
# Optional: Logging level (DEBUG, INFO, WARNING, ERROR)
|
||||||
# DEBUG: Shows detailed operational messages for troubleshooting
|
# DEBUG: Shows detailed operational messages for troubleshooting (default)
|
||||||
# INFO: Shows general operational messages (default)
|
# INFO: Shows general operational messages
|
||||||
# WARNING: Shows only warnings and errors
|
# WARNING: Shows only warnings and errors
|
||||||
# ERROR: Shows only errors
|
# ERROR: Shows only errors
|
||||||
LOG_LEVEL=INFO
|
LOG_LEVEL=DEBUG
|
||||||
|
|
||||||
# Optional: Project root override for file sandboxing
|
# Optional: Project root override for file sandboxing
|
||||||
# If set, overrides the default sandbox directory
|
# If set, overrides the default sandbox directory
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ services:
|
|||||||
# Use HOME not PWD: Claude needs access to any absolute file path, not just current project,
|
# 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
|
# and Claude Code could be running from multiple locations at the same time
|
||||||
- WORKSPACE_ROOT=${WORKSPACE_ROOT:-${HOME}}
|
- WORKSPACE_ROOT=${WORKSPACE_ROOT:-${HOME}}
|
||||||
- LOG_LEVEL=${LOG_LEVEL:-INFO}
|
- LOG_LEVEL=${LOG_LEVEL:-DEBUG}
|
||||||
- PYTHONUNBUFFERED=1
|
- PYTHONUNBUFFERED=1
|
||||||
volumes:
|
volumes:
|
||||||
- ${HOME:-/tmp}:/workspace:ro
|
- ${HOME:-/tmp}:/workspace:ro
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ from tools.models import ToolOutput
|
|||||||
|
|
||||||
# Configure logging for server operations
|
# Configure logging for server operations
|
||||||
# Can be controlled via LOG_LEVEL environment variable (DEBUG, INFO, WARNING, ERROR)
|
# 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
|
# Create timezone-aware formatter
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user