Operational log data reference
Automation orchestrator platform component loggers and runtime settings control operational log output verbosity.
Platform component loggers
| Component | Logger | Log events |
|---|---|---|
| API server | syntara.api.main |
Application startup, request processing, router discovery |
| Temporal worker | syntara.workflows.worker_lifecycle |
Worker startup, signal handling, graceful shutdown, activity execution |
| Audit outbox worker | syntara.audit |
Audit event delivery to pod stdout and OpenTelemetry Protocol (OTLP) collector |
| Audit middleware | syntara.audit.middleware |
Audit event dispatch failure warnings |
| Metrics middleware | syntara.metrics.middleware |
Request duration, error classification,X-Request-Id propagation |
| Auth middleware | syntara.auth.middleware |
Token staleness detection, authentication outcomes |
| Tool manager | syntara.tool_manager.services.tool_service |
Model Context Protocol (MCP) tool server connection status, execution results |
Runtime settings
| Setting key | Default | Description |
|---|---|---|
logging.log_level |
INFO |
System logging level. Changes apply dynamically without a restart. |
Log levels
| Level | Description |
|---|---|
DEBUG |
Detailed diagnostic information. Produces high log volume. Use only when actively diagnosing an issue. |
INFO |
General operational information. Records application startup, request processing, and normal workflow execution. Default level. |
WARNING |
Unexpected conditions that do not prevent operation. |
ERROR |
Errors that affect specific operations, such as unhandled exceptions or failed database queries. |
CRITICAL |
Severe errors that can affect platform stability and require immediate attention. |