From fa989c38826b040cc7219f0e4c97a3e3cbb05f23 Mon Sep 17 00:00:00 2001 From: moodler Date: Thu, 14 Sep 2006 04:25:17 +0000 Subject: [PATCH] Moved debugging() to weblib.php since it's really about output --- lib/moodlelib.php | 29 ----------------------------- lib/weblib.php | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index 36df6cb728..5d4c947bad 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -6628,35 +6628,6 @@ function loadeditor($args) { return editorObject::loadeditor($args); } -/** - * Returns true if the current enviromental debuggin settings (user+site) - * are equal to the specified level: E_NOTICE, E_ALL, E_STRICT etc - * eg use like this: - * - * if (debugging()) { echo "some normal debug info" } - * - * debugging("something really picky", E_STRICT); - * - * @param int $level the level at which this debugging statement should show - * @param string $message a message to print if possible - * @return bool - */ -function debugging($message='', $level=E_NOTICE) { - - global $CFG; - - if (empty($CFG->debug)) { - return false; - } - - if ($CFG->debug >= $level) { - if ($message) { - notify($message, 'notifytiny'); - } - return true; - } - return false; -} // vim:autoindent:expandtab:shiftwidth=4:tabstop=4:tw=140: ?> diff --git a/lib/weblib.php b/lib/weblib.php index 1bb544216a..f3519c8d45 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -5213,6 +5213,35 @@ function page_doc_link($text='', $iconpath='') { return $str; } +/** + * Returns true if the current site debugging settings are equal + * to the specified level: E_NOTICE, E_ALL, E_STRICT etc + * eg use like this: + * + * if (debugging()) { echo "some normal debug info" } + * + * debugging("something really picky", E_STRICT); + * + * @param int $level the level at which this debugging statement should show + * @param string $message a message to print if possible + * @return bool + */ +function debugging($message='', $level=E_NOTICE) { + + global $CFG; + + if (empty($CFG->debug)) { + return false; + } + + if ($CFG->debug >= $level) { + if ($message) { + notify($message, 'notifytiny'); + } + return true; + } + return false; +} // vim:autoindent:expandtab:shiftwidth=4:tabstop=4:tw=140: ?> -- 2.39.5