Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 2.53 KB

README.md

File metadata and controls

57 lines (36 loc) · 2.53 KB

CallbackFilterHandler for Monolog

Stable
Latest Stable Version
Minimum PHP Version)
Branch Master
Tests

Requirements

This handler works with PHP 7.2 or above, use release 1.0.0 for PHP 5.3+ support

Installation

The recommended way to install this library is through composer. If you don't know yet what is composer, have a look on introduction.

composer require bartlett/monolog-callbackfilterhandler

Support

  • release 1.0.0 is not maintained except for bug report, and will accept only Monolog v1.
  • release 2.0.0 is the current active version, and accept only Monolog v2

Documentation

Features

  • This handler obey first to basic Monolog rules as handler level and bubble.
  • Then, in second time, logs are filtered by rules defined in one or more callback functions.

Main difference with FilterHandler included in standard Monolog distribution since version 1.8.0

  • FilterHandler can just filter records and only allow those of a given list of levels through to the wrapped handler.
  • CallbackFilterHandler may filter records to the wrapped handler, on each standard record elements including extra data and logging context.

Example

Here is a basic setup to log all events to a file and most important to another one (or notify by mail). See examples/basic.php file.

Authors

  • Laurent Laville (Lead Developer)
  • Christophe Coevoet (suggested the code base on discussion of Monolog PR#411)

License

This handler is licensed under the BSD-3-clauses License - see the LICENSE file for details