Logger
A powerful, flexible logging utility for Orion.js applications
The Orion.js Logger is a powerful, flexible logging utility built on top of Winston. It provides structured logging capabilities with customizable formats, transports, and context tracking.
Installation
Basic Usage
Features
Log Levels
The logger supports the standard log levels:
error
: For error conditionswarn
: For warning conditionsinfo
: For informational messagesdebug
: For debugging information
Automatic Contextual Information
Each log message automatically includes:
- Timestamp
- Log level
- File name where the log was triggered (automatically detected)
- OpenTelemetry trace and span IDs (when available)
Formatting
The logger supports two main output formats:
-
Text Format (for development):
- Colorized output
- Human-readable formatting
- Activated when
ORION_DEV=1
environment variable is set
-
JSON Format (for production):
- Structured JSON logs
- Ideal for log aggregation and analysis
- Default in production environments
Error Handling
The logger has special handling for errors:
- When an Error object is passed as the value, the stack trace is properly captured
- Error messages are preserved for easy debugging
OpenTelemetry Integration
The logger automatically detects and includes OpenTelemetry trace and span IDs when available, enabling correlation between logs and traces.
Advanced Configuration
Setting Log Level
Adding Custom Transports
Complete Logger Configuration
Best Practices
-
Add Context: Use
logger.addContext(module)
at the top of your files to automatically include file information. -
Structured Data: Pass structured objects instead of concatenating strings:
-
Error Handling: Pass error objects directly instead of just their messages:
-
Log Appropriate Levels: Use the right log level for each message:
debug
: Detailed information useful during developmentinfo
: Normal application behavior, milestoneswarn
: Unexpected but handled issueserror
: Errors that prevent proper operation
Was this page helpful?