From b474098e42c849644fe3a438ba63b57e8adf7064 Mon Sep 17 00:00:00 2001 From: Marco Rivadeneyra Date: Fri, 17 Jul 2015 12:48:08 -0500 Subject: [PATCH] Load Logging configuration via Env, defaults to single Allow the Logging configuration to be set via enviroment, for example, for development I want a single log, in forge I would prefer to log to the syslog so integrating papertrail is easier. --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 15c75aa5862..238f969d51a 100644 --- a/config/app.php +++ b/config/app.php @@ -95,7 +95,7 @@ | */ - 'log' => 'single', + 'log' => env('APP_LOG', 'single'), /* |--------------------------------------------------------------------------