ahmedash95 / logwriter
Laravel Package for custom loging files
1.0
2017-04-21 22:28 UTC
Requires
- php: >=5.6
- illuminate/support: ~5.3.0|~5.4.0
Requires (Dev)
- mockery/mockery: ^0.9.4
- orchestra/testbench: ~3.3.0|~3.4.0
- phpunit/phpunit: 5.*
This package is auto-updated.
Last update: 2024-11-04 11:58:50 UTC
README
customize your laravel log into seperated files
Installation
You can install the package via composer:
composer require ahmedash95/logwriter
Next up, the service provider must be registered:
// config/app.php 'providers' => [ ... Ahmedash95\LogWriter\Providers\LogWriterServiceProvider::class, ]; // Register alias 'aliases' => [ ... 'LogWriter' => Ahmedash95\LogWriter\Facades\LogWriterFacade::class, ];
you must publish the config file for customize log files:
php artisan vendor:publish --provider="Ahmedash95\LogWriter\Providers\LogWriterServiceProvider"
This is the contents of the published file: config/logwriter.php
<?php use Monolog\Logger; return [ /* * The base path of log files */ 'log_path' => storage_path(), /* * The Log channels. */ 'channels' => [ 'event' => [ 'path' => 'logs/event.log', 'level' => Logger::INFO, ], 'audit' => [ 'path' => 'logs/audit.log', 'level' => Logger::INFO, ], ], /* * The Log levels. */ 'levels' => [ 'debug' => Logger::DEBUG, 'info' => Logger::INFO, 'notice' => Logger::NOTICE, 'warning' => Logger::WARNING, 'error' => Logger::ERROR, 'critical' => Logger::CRITICAL, 'alert' => Logger::ALERT, 'emergency' => Logger::EMERGENCY, ], ];
Available methods
Log to file
The easiest way to log info in the file is to use write method
LogWriter::write('event','This is log line into event file');
log levels
Also you can use defferent types that definted in levels list
LogWriter::alert('event','Using log levels'); // or LogWriter::warning('event','Using log levels');
Credits
- Ahmed Ashraf
- All Contributors not yet :)
License
The MIT License (MIT). Please see License File for more information.