From bd5783b5e9db18b353fe10f5ed8bd6f7ca7b8c6e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 16 Jan 2018 11:52:42 -0600 Subject: [PATCH] add aggregate example --- config/logging.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/logging.php b/config/logging.php index 0dd05d93..4a1eb0d1 100644 --- a/config/logging.php +++ b/config/logging.php @@ -30,6 +30,11 @@ return [ */ 'channels' => [ + 'aggregate' => [ + 'driver' => 'aggregate', + 'channels' => ['single', 'daily'], + ], + 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'),