stevenrombauts / monolog-mdc
A Monolog processor to use mapped diagnostic context (MDC) with your logging
Installs: 30 991
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.3.0
- monolog/monolog: ^2.0
This package is auto-updated.
Last update: 2025-03-20 01:22:36 UTC
README
A Monolog processor to use mapped diagnostic context (MDC) with your logging. This enables you to store key-values pair that will be injected into the context of all your subsequent Monolog logs.
Usage
Install with Composer:
composer require stevenrombauts/monolog-mdc
Add the processor to your Monolog instance and use as follows:
<?php use Stevenrombauts\MonologMDC; $logger = new Monolog\Logger('mdc'); $logger->pushProcessor(new MDCProcessor()); MDC::add('foo', 'bar');
The foo=bar
key-value pair will be included in all subsequent logs.