From f0a4fedfe1a9ac61c499b280c01d2fa97c972708 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Sat, 3 May 2014 22:30:38 +0200 Subject: [PATCH] enable error reporting --- application/ManiaControl.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/ManiaControl.php b/application/ManiaControl.php index 198a314f..d784ca61 100644 --- a/application/ManiaControl.php +++ b/application/ManiaControl.php @@ -8,6 +8,9 @@ define('LOG_NAME_USE_PID', true); // Use current process id as suffix for log fi // Define base dir define('ManiaControlDir', __DIR__ . DIRECTORY_SEPARATOR); +// Enable error reporting +error_reporting(E_ALL); + // Define fatal error level define('E_FATAL', E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_RECOVERABLE_ERROR | E_USER_ERROR);