diff options
-rw-r--r-- | it.class | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -244,6 +244,7 @@ static function error($p = array()) $body .= $_GET ? "\$_GET: " . var_export($_GET, true) . "\n\n" : ""; $body .= $_POST ? "\$_POST: " . var_export($_POST, true) . "\n\n" : ""; $body .= $_COOKIE ? "\$_COOKIE: " . var_export($_COOKIE, true) . "\n\n" : ""; + $body .= $_SERVER['REMOTE_ADDR'] ? "" : "Pstree:\n" . it::exec("pstree -a -l -p | grep -B 3 '[,]" . getmypid() . "\b'") . "\n"; $body .= $_SERVER ? "\$_SERVER: " . var_export($_SERVER, true) . "\n\n" : ""; $body .= $_FILES ? "\$_FILES: " . var_export($_FILES, true) . "\n\n" : ""; $body .= $stackframes ? "Stack: " . print_r($stackframes, true) . "\n\n" : ""; |