diff options
author | thomascube <thomas@roundcube.net> | 2008-09-20 12:57:18 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-20 12:57:18 +0000 |
commit | 40deec8be78789a5386fd1b5b12f791e7249edab (patch) | |
tree | 03f2cb06204519aaf881e548423d57b1246ab7ef /program | |
parent | 6925adb279131224d48ff8d5cb0f57aa9f167916 (diff) |
Add some post parameters to error log entry
Diffstat (limited to 'program')
-rw-r--r-- | program/include/bugs.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/bugs.inc b/program/include/bugs.inc index f7a1fd55a..56b88c631 100644 --- a/program/include/bugs.inc +++ b/program/include/bugs.inc @@ -72,6 +72,7 @@ function log_bug($arg_arr) // write error to local log file if ($CONFIG['debug_level'] & 1) { + $post_query = ($_SERVER['REQUEST_METHOD'] == 'POST' ? '?_task='.urlencode($_POST['_task']).'&_action='.urlencode($_POST['_action']) : ''); $log_entry = sprintf("[%s] %s Error: %s in %s on line %d (%s %s)\n", date("d-M-Y H:i:s O", mktime()), $program, @@ -79,7 +80,7 @@ function log_bug($arg_arr) $arg_arr['file'], $arg_arr['line'], $_SERVER['REQUEST_METHOD'], - $_SERVER['REQUEST_URI']); + $_SERVER['REQUEST_URI'] . $post_query); if (empty($CONFIG['log_dir'])) $CONFIG['log_dir'] = INSTALL_PATH.'logs'; |