From c70c986e58fe1a14f7c74626e6e97032d4084d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vil=C3=A0?= Date: Fri, 13 Sep 2019 21:47:34 +0200 Subject: [PATCH] [6.x] Add 'null' logging channel (#5106) * Add 'none' logging channel * Remove extra spaces * Rename 'none' channel to 'null' * Update logging.php --- config/logging.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/logging.php b/config/logging.php index d09cd7d2..0df82129 100644 --- a/config/logging.php +++ b/config/logging.php @@ -1,5 +1,6 @@ 'errorlog', 'level' => 'debug', ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], ], ];