seasx / seas-logger
An effective,fast,stable log package for PHP
2.0.1
2019-02-15 02:52 UTC
Requires
- php: ^7.0
- ext-seaslog: ^2.0
- friendsofphp/php-cs-fixer: ^2.11
- psr/log: ^1.0.2
Requires (Dev)
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2024-10-12 21:26:18 UTC
README
An effective,fast,stable log package for PHP base SeasLog
This library implements the PSR-3 and PSR-4
Installation
Install the latest version with
$ composer require seasx/seas-logger
Basic Usage
<?php use Seasx\SeasLogger\Logger; $logger = new Logger(); // add records to the log $logger->warning('Hello'); $logger->error('SeasLogger');
configuration for laravel/lumen >=5.6
add seaslog configuration in config/logging.php
'channels' => [ ... 'seaslog' => [ 'driver' => 'custom', 'via' => \Seasx\SeasLogger\Logger::class, 'path' => '/path/to/logfile', ], ... ]
edit .env file to use seaslog
LOG_CHANNEL=seaslog