[Phpslash-commit] CVS: phpslash-ft/public_html config.php3,1.170,1.171
Brought to you by:
joestewart,
nhruby
From: Matthew L. <sym...@us...> - 2002-12-11 23:03:23
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv6548/public_html Modified Files: config.php3 Log Message: Debug now recurses to any desired depth, including infinity. Debug can e-mail output rather than output to browser. New configuration directives: debug.max_recursion_level, debug.escape_html, debug.mailto Index: config.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v retrieving revision 1.170 retrieving revision 1.171 diff -C2 -d -r1.170 -r1.171 *** config.php3 11 Dec 2002 21:25:54 -0000 1.170 --- config.php3 11 Dec 2002 23:03:17 -0000 1.171 *************** *** 62,69 **** $_PSL['version'] = '0.6.5'; ! /**** START DEBUGING - Comment or delete this for production! ****/ //ini_set('error_reporting', 'E_ALL'); //ini_set('error_reporting', 'E_ALL~E_NOTICE'); ! /**** END DEBUGING ****/ ////////////////////////////////////////////////////////////////////////// --- 62,69 ---- $_PSL['version'] = '0.6.5'; ! /**** START DEBUGGING - Comment or delete this for production! ****/ //ini_set('error_reporting', 'E_ALL'); //ini_set('error_reporting', 'E_ALL~E_NOTICE'); ! /**** END DEBUGGING ****/ ////////////////////////////////////////////////////////////////////////// *************** *** 128,135 **** ! // 1.11.2) Debug options ! $_PSL['debug'] = false; // true for on, false for off ! $_PSL['debug_type'] = 'now'; // 'now' for output to browser ! // 'log' for output to the admin log /** --- 128,147 ---- ! // ;; 1.11.2) Debug options ! // ;; true for on, false for off ! $_PSL['debug'] = false; ! // ;; Debug type: ! // ;; 'now' for output to the browser ! // ;; 'log' for output to the admin log ! // ;; 'mail' to e-mail output ! $_PSL['debug_type'] = 'now'; ! // ;; Mail debug output to (e.g., "web...@ph..."); ! // ;; CAUTION: Generates one message per debug call, not per page. ! $_PSL['debug.mailto'] = ''; ! // ;; Recurse through data structures down this far ! // ;; (use -1 if you are not afraid of circular references) ! $_PSL['debug.max_recursion_level'] = 10; ! // ;; Escape html in debug output ! $_PSL['debug.escape_html'] = true; /** |