Skip to content

Instantly share code, notes, and snippets.

@josemiguelq
Created July 16, 2020 22:05
Show Gist options
  • Save josemiguelq/c373aa614e2b72e3838275a0466497cd to your computer and use it in GitHub Desktop.
Save josemiguelq/c373aa614e2b72e3838275a0466497cd to your computer and use it in GitHub Desktop.
<?php
return [
'default' => env('LOG_CHANNEL', 'stack'),
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['single'],
],
'single' => [
'driver' => 'single',
'tap' => [\App\Logging\CustomLogger::class],
// Sending logs to stdout
'path' => 'php://stdout',
'level' => 'debug',
]
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment