yiisoft / log
Yii Logging Library
Fund package maintenance!
Opencollective
yiisoft
Installs: 606 091
Dependents: 70
Suggesters: 2
Security: 0
Stars: 40
Watchers: 20
Forks: 17
Open Issues: 5
Requires
- php: ^8.0
- psr/log: ^2.0|^3.0
- yiisoft/var-dumper: ^1.0
Requires (Dev)
- maglnet/composer-require-checker: ^4.4
- phpunit/phpunit: ^9.5
- rector/rector: ^1.2
- roave/infection-static-analysis-plugin: ^1.18
- spatie/phpunit-watcher: ^1.23
- vimeo/psalm: ^4.30|^5.25
Suggests
- yiisoft/log-target-db: Allows writing log messages to the database
- yiisoft/log-target-email: Allows sending log messages by email
- yiisoft/log-target-file: Allows writing log messages to the files
- yiisoft/log-target-syslog: Allows writing log messages to the Syslog
Provides
- psr/log-implementation: 1.0.0
README
Yii Logging Library
This package provides a PSR-3 compatible logging library. It is used extensively in the Yii Framework but it can also be used as a separate package.
The logger sends or passes messages to multiple targets. Each target may filter these messages according to their severity level, and category, and then export them to some medium such as a file, an email or a syslog.
Requirements
- PHP 8.0 or higher.
Installation
The package can be installed with Composer:
composer require yiisoft/log
General usage
Creating a logger:
/** * List of class instances that extend the \Yiisoft\Log\Target abstract class. * * @var \Yiisoft\Log\Target[] $targets */ $logger = new \Yiisoft\Log\Logger($targets);
Writing logs:
$logger->emergency('Emergency message', ['key' => 'value']); $logger->alert('Alert message', ['key' => 'value']); $logger->critical('Critical message', ['key' => 'value']); $logger->warning('Warning message', ['key' => 'value']); $logger->notice('Notice message', ['key' => 'value']); $logger->info('Info message', ['key' => 'value']); $logger->debug('Debug message', ['key' => 'value']);
Message Flushing and Exporting
Log messages are collected and stored in memory. To limit memory consumption, the logger will flush
the recorded messages to the log targets each time a certain number of log messages accumulate.
You can customize this number by calling the \Yiisoft\Log\Logger::setFlushInterval()
method:
$logger->setFlushInterval(100); // default is 1000
Each log target also collects and stores messages in memory.
Message exporting in a target follows the same principle as in the logger.
To change the number of stored messages, call the \Yiisoft\Log\Target::setExportInterval()
method:
$target->setExportInterval(100); // default is 1000
Note: All message flushing and exporting also occurs when the application ends.
Logging targets
This package contains two targets:
Yiisoft\Log\PsrTarget
- passes log messages to another PSR-3 compatible logger.Yiisoft\Log\StreamTarget
- writes log messages to the specified output stream.
Extra logging targets are implemented as separate packages:
Context providers
Context providers are used to provide additional context data for log messages. You can define your own context provider
in the Logger
constructor:
$logger = new \Yiisoft\Log\Logger(contextProvider: $myContextProvider);
Out of the box, the following context providers are available:
SystemContextProvider
— adds system information (time, memory usage, trace, default category);CommonContextProvider
— adds common data;CompositeContextProvider
— allows combining multiple context providers.
By default, the logger uses the built-in SystemContextProvider
.
SystemContextProvider
The SystemContextProvider
adds the following data to the context:
time
— current Unix timestamp with microseconds (float value);trace
— array of call stack information;memory
— memory usage in bytes.category
— category of the log message (always "application").
Yiisoft\Log\ContextProvider\SystemContextProvider
constructor parameters:
traceLevel
— how much call stack information (file name and line number) should be logged for each log message. If the traceLevel is greater than 0, a similar number of call stacks will be logged at most. Note that only application call stacks are counted.excludedTracePaths
— array of paths to exclude from tracing when tracing is enabled withtraceLevel
.
An example of custom parameters' usage:
$logger = new \Yiisoft\Log\Logger( contextProvider: new Yiisoft\Log\ContextProvider\SystemContextProvider( traceLevel: 3, excludedTracePaths: [ '/vendor/yiisoft/di', ], ), );
CommonContextProvider
The CommonContextProvider
allows the adding of additional common information to the log context, for example:
$logger = new \Yiisoft\Log\Logger( contextProvider: new Yiisoft\Log\ContextProvider\CommonContextProvider([ 'environment' => 'production', ]), );
CompositeContextProvider
The CompositeContextProvider
allows the combining of multiple context providers into one, for example:
$logger = new \Yiisoft\Log\Logger( contextProvider: new Yiisoft\Log\ContextProvider\CompositeContextProvider( new Yiisoft\Log\ContextProvider\SystemContextProvider(), new Yiisoft\Log\ContextProvider\CommonContextProvider(['environment' => 'production']) ), );
Documentation
If you need help or have a question, the Yii Forum is available. You may also check out other Yii Community Resources.
License
The Yii Logging Library is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.