Browse Source

add aggregate example

Taylor Otwell 6 years ago
parent
commit
bd5783b5e9
1 changed files with 5 additions and 0 deletions
  1. 5 0
      config/logging.php

+ 5 - 0
config/logging.php

@@ -30,6 +30,11 @@ return [
     */
 
     'channels' => [
+        'aggregate' => [
+            'driver' => 'aggregate',
+            'channels' => ['single', 'daily'],
+        ],
+
         'single' => [
             'driver' => 'single',
             'path' => storage_path('logs/laravel.log'),