diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index ecb0ec12d1..219de25e68 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,5 +1,7 @@ 2010-10-05 Sancho Lerena + * include/config_process.php: Remove config['debug'] from prev. commit. + * include/config_process.php: Set to 0 $config['debug'] by default to avoid debug messages on normal operation mode, developers should setup debug mode in their config.php file. diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 05e62d9d7d..d0e8781572 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -59,9 +59,6 @@ else { $config['start_time'] = microtime (true); -// Only set this to 1 on active development, this will trace all SQL errors. -$config['debug'] = 0; - // Non-persistent connection: This will help to avoid mysql errors like "has gone away" or locking problems // If you want persistent connections change it to mysql_pconnect(). $config['dbconnection'] = mysql_connect ($config["dbhost"], $config["dbuser"], $config["dbpass"]);