aboutsummaryrefslogtreecommitdiff
path: root/config/logging.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-07-29 18:03:13 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-07-29 18:10:50 +0100
commit8c0a2a6383a447bcfe988f8fa46f3923e30bff17 (patch)
treeab7483cda3af501fc0dfec175dda4983a7b99aad /config/logging.php
parente15ea940b3823f8865d63d34e464328be6b25c34 (diff)
Merge fixes into v5.5 branch (#12)
--------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
Diffstat (limited to 'config/logging.php')
-rw-r--r--config/logging.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/config/logging.php b/config/logging.php
index c44d276..2da9712 100644
--- a/config/logging.php
+++ b/config/logging.php
@@ -6,51 +6,13 @@ use Monolog\Handler\SyslogUdpHandler;
use Monolog\Processor\PsrLogMessageProcessor;
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' => env('LOG_CHANNEL', 'stack'),
- /*
- |--------------------------------------------------------------------------
- | Deprecations Log Channel
- |--------------------------------------------------------------------------
- |
- | This option controls the log channel that should be used to log warnings
- | regarding deprecated PHP and library features. This allows you to get
- | your application ready for upcoming major versions of dependencies.
- |
- */
-
'deprecations' => [
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
'trace' => false,
],
- /*
- |--------------------------------------------------------------------------
- | 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' => [
'stack' => [
'driver' => 'stack',