samdark/yii2-psr-log-target

Yii 2 log target which uses PSR-3 compatible logger

Maintainers

👁 samdark

Package info

github.com/samdark/yii2-psr-log-target

Type:yii2-extension

pkg:composer/samdark/yii2-psr-log-target

Fund package maintenance!

samdark

Patreon

Statistics

Installs: 1 897 550

Dependents: 10

Suggesters: 0

Stars: 84

Open Issues: 5

1.1.4 2023-11-23 14:11 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause 5f14f21d5ee4294fe9eb3e723ec8a3908ca082ea

  • Alexander Makarov <sam.woop@rmcreative.ru>

logextensionyiipsr-3


README

Allows you to process logs using any PSR-3 compatible logger such as Monolog.

👁 Latest Stable Version
👁 Total Downloads
👁 Build Status
👁 Code Coverage
👁 Scrutinizer Quality Score

Installation

composer require "samdark/yii2-psr-log-target"

Usage

In order to use PsrTarget you should configure your log application component like the following:

// $psrLogger should be an instance of PSR-3 compatible logger.
// As an example, we'll use Monolog to send log to Slack.
$psrLogger = new \Monolog\Logger('my_logger');
$psrLogger->pushHandler(new \Monolog\Handler\SlackHandler('slack_token', 'logs', null, true, null, \Monolog\Logger::DEBUG));

return [
 // ...
 'bootstrap' => ['log'], 
 // ... 
 'components' => [
 // ... 
 'log' => [
 'targets' => [
 [
 'class' => 'samdark\log\PsrTarget',
 'logger' => $psrLogger,
 
 // It is optional parameter. The message levels that this target is interested in.
 // The parameter can be an array.
 'levels' => ['info', yii\log\Logger::LEVEL_WARNING, Psr\Log\LogLevel::CRITICAL],
 // It is optional parameter. Default value is false. If you use Yii log buffering, you see buffer write time, and not real timestamp.
 // If you want write real time to logs, you can set addTimestampToContext as true and use timestamp from log event context.
 'addTimestampToContext' => true,
 ],
 // ...
 ],
 ],
 ],
];

Standard usage:

Yii::info('Info message');
Yii::error('Error message');

Usage with PSR logger levels:

Yii::getLogger()->log('Critical message', Psr\Log\LogLevel::CRITICAL);
Yii::getLogger()->log('Alert message', Psr\Log\LogLevel::ALERT);

Usage with original timestamp from context in the log:

// $psrLogger should be an instance of PSR-3 compatible logger.
// As an example, we'll use Monolog to send log to Slack.
$psrLogger = new \Monolog\Logger('my_logger');

$psrLogger->pushProcessor(function($record) {
 if (isset($record['context']['timestamp'])) {
 $dateTime = DateTime::createFromFormat('U.u', $record['context']['timestamp']);
 $timeZone = $record['datetime']->getTimezone();
 $dateTime->setTimezone($timeZone);
 $record['datetime'] = $dateTime;

 unset($record['context']['timestamp']);
 }

 return $record;
});

You can use PsrMessage instead of regular string messages to add custom context.

Standard usage:

Yii::error(new \samdark\log\PsrMessage("Critical message", [
 'custom' => 'context',
 'key' => 'value',
]));

Usage with PSR logger Levels:

Yii::getLogger()->log(new \samdark\log\PsrMessage("Critical message", [
 'important' => 'context'
]), Psr\Log\LogLevel::CRITICAL);

Usage with PSR-3 log message processing:

$psrLogger = new \Monolog\Logger('my_logger');
$psrLogger->pushProcessor(new \Monolog\Processor\PsrLogMessageProcessor());
Yii::debug(new \samdark\log\PsrMessage("Greetings from {fruit}", [
 'fruit' => 'banana'
]));

Running tests

In order to run tests perform the following commands:

composer install
./vendor/bin/phpunit