yiisoft/log-target-syslog

Yii Logging Library - Syslog Target

2.0.0 2023-02-17 05:54 UTC

This package is auto-updated.

Last update: 2024-04-16 21:47:24 UTC


README

993323

Yii Logging Library - Syslog Target


Latest Stable Version Total Downloads Build status Scrutinizer Code Quality Code Coverage Mutation testing badge static analysis type-coverage

This package provides the Syslog target for the yiisoft/log library.

Requirements

  • PHP 8.0 or higher.

Installation

The package could be installed with composer:

composer require yiisoft/log-target-syslog --prefer-dist

General usage

Creating a target:

use Yiisoft\Log\Target\Syslog\SyslogTarget;

$syslogTarget = new SyslogTarget($identity, $options, $facility);
  • $identity (string) - The openlog() identity.
  • $options (int) - The openlog() options. Defaults to LOG_ODELAY | LOG_PID.
  • $facility (int) - The openlog() facility. Defaults to LOG_USER.

For more information, see the description of the openlog() function.

Creating a logger:

$logger = new \Yiisoft\Log\Logger([$syslogTarget]);

For a description of using the logger, see the yiisoft/log package.

For use in the Yii framework, see the configuration files:

See Yii guide to logging for more info.

Testing

Unit testing

The package is tested with PHPUnit. To run tests:

./vendor/bin/phpunit

Mutation testing

The package tests are checked with Infection mutation framework. To run it:

./vendor/bin/infection

Static analysis

The code is statically analyzed with Psalm. To run static analysis:

./vendor/bin/psalm

Support the project

Open Collective

Follow updates

Official website Twitter Telegram Facebook Slack

License

The Yii Logging Library - Syslog Target is free software. It is released under the terms of the BSD License. Please see LICENSE for more information.

Maintained by Yii Software.