Browse Source

Disable debugging by default. Must opt-in for local.

Taylor Otwell 11 years ago
parent
commit
dff012070e
2 changed files with 19 additions and 1 deletions
  1. 1 1
      app/config/app.php
  2. 18 0
      app/config/local/app.php

+ 1 - 1
app/config/app.php

@@ -13,7 +13,7 @@ return array(
 	|
 	*/
 
-	'debug' => true,
+	'debug' => false,
 
 	/*
 	|--------------------------------------------------------------------------

+ 18 - 0
app/config/local/app.php

@@ -0,0 +1,18 @@
+<?php
+
+return array(
+
+	/*
+	|--------------------------------------------------------------------------
+	| Application Debug Mode
+	|--------------------------------------------------------------------------
+	|
+	| When your application is in debug mode, detailed error messages with
+	| stack traces will be shown on every error that occurs within your
+	| application. If disabled, a simple generic error page is shown.
+	|
+	*/
+
+	'debug' => true,
+
+);