+
+if (defined('SCUTTLE_DEBUG') && SCUTTLE_DEBUG) {
+ ini_set('display_errors', '1');
+ ini_set('mysql.trace_mode', '1');
+ error_reporting(E_ALL);
+}
+else {
+ ini_set('display_errors', '0');
+ ini_set('mysql.trace_mode', '0');
+ error_reporting(E_ALL);
+ //PHP5.4 PHP Notice: Undefined variable: PHP7 STOP deprecated and Warning
+ error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED & ~E_USER_WARNING);
+}
\ No newline at end of file