Package Data | |
---|---|
Maintainer Username: | triadev |
Maintainer Contact: | christopher.lorke@gmx.de (Christopher Lorke) |
Package Create Date: | 2017-05-04 |
Package Last Update: | 2018-05-10 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-11 15:19:22 |
Package Statistics | |
---|---|
Total Downloads: | 198 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
A laravel and lumen service provider for logging.
composer require triadev/laravel-logger-provider
Register the service provider in the config/app.php (Laravel) or in the bootstrap/app.php (Lumen).
'providers' => [
\Triadev\Logger\Provider\LoggerServiceProvider::class
]
Once installed you can now publish your config file and set your correct configuration for using the package.
php artisan vendor:publish --provider="Triadev\Logger\Provider\LoggerServiceProvider" --tag="config"
This will create a file config/sc-logger.php
.
| Key | Value | Description | |:-------------:|:-------------:|:-----:| | LOG_TYPE | STRING | stream or logstash | | LOG_STREAM | STRING | php://stdout, ... | | LOG_LEVEL | STRING | debug,error, ... |
If you do find an issue, please feel free to report it with GitHub's bug tracker for this project.
Alternatively, fork the project and make a pull request. :)
The code for LaravelLoggerProvider is distributed under the terms of the MIT license (see LICENSE).