rlacerda83 / laravel-dynamic-logger by rlacerda83

Dynamic logger for laravel
47
0
2
Package Data
Maintainer Username: rlacerda83
Maintainer Contact: r.lacerda83@gmail.com (Rodrigo Lacerda)
Package Create Date: 2016-07-08
Package Last Update: 2016-07-08
Language: PHP
License: BSD
Last Refreshed: 2024-04-17 15:00:44
Package Statistics
Total Downloads: 47
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Dynamic Log settings for Laravel

With this package you will be able to change log settings in real time.

Requirements

Laravel 5.

Installation

You can install the package using the Composer package manager. You can install it by running this command in your project root:

composer require rlacerda83/laravel-dynamic-logger

Configuration

Add the DynamicLogger\DynamicLoggerServiceProvider provider to the providers array in config/app.php:

'providers' => [
  DynamicLogger\DynamicLoggerServiceProvider::class,
],

Then add the facade to your aliases array:

'aliases' => [
  ...
  'DynamicLogger' => DynamicLogger\Facades\DynamicLogger::class,
],

Usage

The DynamicLogger facade is now your interface to the library.

Note that if you're using the facade in a namespace (e.g. App\Http\Controllers in Laravel 5) you'll need to either use DynamicLogger at the top of your class to import it, or append a backslash to access the root namespace directly when calling methods, e.g. \DynamicLogger::method().

/**
 * Use setHandlers to modify the log settings
 *
 * @param array $handlers - array handlers (monolog)
 * @param bool $logOnlyThisHandlers - If true, it ignores the default handler of laravel and uses only the handlers sent
 * @param bool $cliLogger - future improvement
 */

$file = 'path_to_log/file.log'
$handlers[] = new StreamHandler($file);
\DynamicLogger::setHandlers($handlers, true, $cliLogger);
//From that moment, the log will only be used with informed handlers

//to revert the log for default laravel settings use:
\DynamicLogger::revert();

// you can use Log::info() or you can use DynamicLogger::info()
/**
 * All log methods in DynamicLogger accept this params
 *
 * @param string $message
 * @param array $params
 * @param array $context
 */
 
 //Both have the same behavior
Log::info('Info message');
DynamicLogger::info('Info Message');

// DynamicLogger with params
DynamicLogger::info(
  'Event %s has been successfully started. Next event will be the %s', [$currentEvent, $nextEvent]);