diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2009-08-04 15:34:04 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2009-08-04 15:34:04 +0000 |
commit | ccbbaba91d0314144932c2916229818b0ac71c4e (patch) | |
tree | 584457b4e8c3eac52a80256d19df6420e9578a11 /phpBB/includes/functions.php | |
parent | 6cd6a907c7d8503896a46f710bb75370f1abcf43 (diff) | |
download | forums-ccbbaba91d0314144932c2916229818b0ac71c4e.tar forums-ccbbaba91d0314144932c2916229818b0ac71c4e.tar.gz forums-ccbbaba91d0314144932c2916229818b0ac71c4e.tar.bz2 forums-ccbbaba91d0314144932c2916229818b0ac71c4e.tar.xz forums-ccbbaba91d0314144932c2916229818b0ac71c4e.zip |
add the option to place image debugging information to the log
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9920 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d147872c34..6549ba9b0d 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3465,8 +3465,13 @@ function msg_handler($errno, $msg_text, $errfile, $errline) // remove complete path to installation, with the risk of changing backslashes meant to be there $errfile = str_replace(array(phpbb_realpath($phpbb_root_path), '\\'), array('', '/'), $errfile); $msg_text = str_replace(array(phpbb_realpath($phpbb_root_path), '\\'), array('', '/'), $msg_text); - echo '<b>[phpBB Debug] PHP Notice</b>: in file <b>' . $errfile . '</b> on line <b>' . $errline . '</b>: <b>' . $msg_text . '</b><br />' . "\n"; + + // we are writing an image - the user won't see the debug, so let's place it in the log + if (defined('IMAGE_OUTPUT')) + { + add_log('critical', 'LOG_IMAGE_GENERATION_ERROR', $errfile, $errline, $msg_text); + } // echo '<br /><br />BACKTRACE<br />' . get_backtrace() . '<br />' . "\n"; } |