Logging Error Handler for DotKernel
| Branch | Release | PSR-11 | Log Style Implementation | OSS Lifecycle | PHP Version |
|---|---|---|---|---|---|
| 4.1 | >= 4.2 |
2 | PSR-Log | ||
| 4.1 | < 4.2 |
2 | Laminas Log | ||
| 4.0 | < 4.1 |
1 | Laminas Log | ||
| 3.0 | < 4.0 |
1 | Laminas Log |
- Add the composer package:
composer require dotkernel/dot-errorhandler
-
Add the config provider
- in
config/config.phpadd\Dot\ErrorHandler\ConfigProvider - in
config/pipeline.phpadd\Dot\ErrorHandler\ErrorHandlerInterface::class- the interface is used as an alias to keep all error handling related configurations in one file
- IMPORTANT NOTE there should be no other error handlers after this one (only before) because the other error handler will catch the error causing dot-errorhandler not to catch any error, we recommend using just one error handler unless you have an error-specific handler
- in
-
Configure the error handler as shown below
config/autoload/error-handling.global.php
<?php
use Dot\ErrorHandler\ErrorHandlerInterface;
use Dot\ErrorHandler\LogErrorHandler;
use Dot\ErrorHandler\ErrorHandler;
return [
'dependencies' => [
'aliases' => [
ErrorHandlerInterface::class => LogErrorHandler::class,
]
],
'dot-errorhandler' => [
'loggerEnabled' => true,
'logger' => 'dot-log.default_logger'
]
];A configuration example for the default logger can be found in config/log.global.php.dist.
When declaring the ErrorHandlerInterface alias you can choose whether to log or not:
- for logging use
LogErrorHandler - for the simple Zend Expressive handler user
ErrorHandler
The class Dot\ErrorHandler\ErrorHandler is the same as the Zend Expressive error handling class
the only difference being the removal of the final statement for making extension possible.
The class Dot\ErrorHandler\LogErrorHandler is Dot\ErrorHandler\ErrorHandler with
added logging support.
As a note: both LogErrorHandler and ErrorHandler have factories declared in the
package's ConfigProvider. If you need a custom ErrorHandler it must have a factory
declared in the config, as in the example.
Example:
<?php
use Dot\ErrorHandler\ErrorHandlerInterface;
use Custom\MyErrorHandler;
use Custom\MyErrorHandlerFactory;
return [
'dependencies' => [
'factories' => [
MyErrorHandler::class => MyCustomHandlerFactory::class,
],
'aliases' => [
ErrorHandlerInterface::class => MyErrorHandler::class,
]
],
'dot-errorhandler' => [
'loggerEnabled' => true,
'logger' => 'dot-log.default_logger'
]
];Config examples can be found in this project's config directory.