yiisoft/yii2-psr-log-source

A PSR LoggerInterface implementation that routes to the Yii logger

Fund package maintenance!
Open Collective
yiisoft
Tidelift

Installs: 6 744

Dependents: 0

Suggesters: 1

Security: 0

Stars: 7

Watchers: 12

Forks: 2

Open Issues: 1

Type:yii2-extension

v1.0.0 2022-10-04 08:34 UTC

This package is auto-updated.

Last update: 2024-03-20 10:11:20 UTC


README

This simple library implements a PSR compatible logger that routes all messages to a Yii Logger. Use this if you have a library that needs such a logger and you want to forward the messages to your existing Logger.

Logger adapter

The Logger adapter class takes a Yii Logger object and implements the LoggerInterface.

DynamicLogger

Since Yii2 uses mutability a lot, the Logger adapter might hold a reference to an old Yii Logger. To work properly with the Service Locator pattern we must use it on every call. DynamicLogger does this while internally using the Logger and recreating it when needed.