From dff012070e475023bbda0c9b343aa1a62c687588 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 15 Apr 2014 08:34:29 -0500 Subject: [PATCH] Disable debugging by default. Must opt-in for local. --- app/config/app.php | 2 +- app/config/local/app.php | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 app/config/local/app.php diff --git a/app/config/app.php b/app/config/app.php index d8990379..6dc1113f 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -13,7 +13,7 @@ | */ - 'debug' => true, + 'debug' => false, /* |-------------------------------------------------------------------------- diff --git a/app/config/local/app.php b/app/config/local/app.php new file mode 100644 index 00000000..c56fcb9c --- /dev/null +++ b/app/config/local/app.php @@ -0,0 +1,18 @@ + true, + +);