]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-12729 show recoverable fatal errors in DEBUG_ALL and DEBUG_DEVELOPER; merged...
authorskodak <skodak>
Wed, 26 Dec 2007 13:33:25 +0000 (13:33 +0000)
committerskodak <skodak>
Wed, 26 Dec 2007 13:33:25 +0000 (13:33 +0000)
lib/moodlelib.php

index f37873c70040ef80a7b0d0be4b5fa74baaf17c00..0179378adc46d6333835377626c073a7fbbd188e 100644 (file)
@@ -234,7 +234,6 @@ define('PARAM_BASE64',   0x20000);
  * PAGE_COURSE_VIEW is a definition of a page type. For more information on the page class see moodle/lib/pagelib.php.
  */
 define('PAGE_COURSE_VIEW', 'course-view');
-define('PAGE_MOD_VIEW', 'mod-view');
 
 /// Debug levels ///
 /** no warnings at all */
@@ -243,10 +242,10 @@ define ('DEBUG_NONE', 0);
 define ('DEBUG_MINIMAL', 5);
 /** E_ERROR | E_PARSE | E_WARNING | E_NOTICE */
 define ('DEBUG_NORMAL', 15);
-/** E_ALL without E_STRICT and E_RECOVERABLE_ERROR for now */
-define ('DEBUG_ALL', 2047);
+/** E_ALL without E_STRICT for now, do show recoverable fatal errors */
+define ('DEBUG_ALL', 6143);
 /** DEBUG_ALL with extra Moodle debug messages - (DEBUG_ALL | 32768) */
-define ('DEBUG_DEVELOPER', 34815);
+define ('DEBUG_DEVELOPER', 38911);
 
 /**
  * Blog access level constant declaration