datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
<?php
|
|
|
|
use Monolog\Handler\StreamHandler;
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Log Channel
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option defines the default log channel that gets used when writing
|
|
| messages to the logs. The name specified in this option should match
|
|
| one of the channels defined in the "channels" configuration array.
|
|
|
|
|
*/
|
|
|
|
'default' => 'custom',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Channels
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may configure the log channels for your application. Out of
|
|
| the box, Laravel uses the Monolog PHP logging library. This gives
|
|
| you a variety of powerful log handlers / formatters to utilize.
|
|
|
|
|
| Available Drivers: "single", "daily", "slack", "syslog",
|
|
| "errorlog", "monolog",
|
|
| "custom", "stack"
|
|
|
|
|
*/
|
|
|
|
'channels' => [
|
|
'custom' => [
|
|
'driver' => 'custom',
|
|
'via' => App\Logger::class,
|
|
],
|
|
],
|
|
|
|
];
|
|
|