silinternational / psr3-adapters
Various PSR3-compatible logging adapters.
Installs: 15 509
Dependents: 8
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 2
Open Issues: 0
Requires
- php: ^8.1
- psr/log: ^3.0
Requires (Dev)
- monolog/monolog: ^2.0 | ^3.0
- phpunit/phpunit: ^9.0
- roave/security-advisories: dev-master
- simplesamlphp/simplesamlphp: ^2.0
- yiisoft/yii2: ^2.0
Suggests
- monolog/monolog: ^2.0 | ^3.0
- simplesamlphp/simplesamlphp: ^2.0
- yiisoft/yii2: ^2.0
README
Various PSR3-compatible logging adapters.
Adapter-specific notes
Psr3EchoLogger
A basic PSR-3 compliant logger that merely echoes logs to the console (primarily intended for use in tests).
This echo
es out the log messages, allowing the output to be buffered so that it appears at the expected place within the rest of the output (such as in tests).
Psr3FakeLogger
A basic PSR-3 compliant logger that stores log entries in an array. This allows confirmation that logging has occurred using hasLogs and hasSpecificLog methods.
Psr3SamlLogger
A minimalist wrapper library (for SimpleSAML\Logger) to make it PSR-3 compatible.
Psr3StdOutLogger
A basic PSR-3 compliant logger that writes logs to stdout. This bypasses any output buffering that PHP may be doing.
Psr3SyslogLogger
A basic PSR-3 compliant logger that sends logs to syslog.
Psr3Yii2Logger
A basic PSR-3 compliant logger that sends logs to Yii2's logging functions.
NOTE: Yii2 only provides error, warning, info, and trace levels, so the PSR-3 log levels were mapped to those on a best-effort basis.
Make sure your Yii config bootstraps the log
component. In other words, include something like this in your Yii config: 'bootstrap' => ['log']