X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/6917ea088f905ec57e16d8795ad0bcb191c38b52..refs/pull/2166/head:/app/Config/logging.php diff --git a/app/Config/logging.php b/app/Config/logging.php index c952ac02f..375e84083 100644 --- a/app/Config/logging.php +++ b/app/Config/logging.php @@ -1,5 +1,6 @@ 'errorlog', 'level' => 'debug', ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + // Testing channel + // Uses a shared testing instance during tests + // so that logs can be checked against. + 'testing' => [ + 'driver' => 'testing', + ], ], -]; \ No newline at end of file +];