summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrban Müller2023-05-08 14:17:52 +0200
committerUrban Müller2023-05-08 14:17:52 +0200
commit9ce1061573da6196aa18f54e626a3ffa759b9666 (patch)
tree63db4ddca0730087a6a6e9e8cbf3a98cbd9d155d
parent76d976bd078e9985855aa8649e121a298bf154f8 (diff)
downloaditools-9ce1061573da6196aa18f54e626a3ffa759b9666.tar.gz
itools-9ce1061573da6196aa18f54e626a3ffa759b9666.tar.bz2
itools-9ce1061573da6196aa18f54e626a3ffa759b9666.zip
avoid stderr when no alertlogs present yet
-rw-r--r--it.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it.class b/it.class
index debbe96..1429e9d 100644
--- a/it.class
+++ b/it.class
@@ -293,7 +293,7 @@ static function error($p = array(), $extra = null)
$longstack = it_debug::backtrace(['trace' => $backtrace, 'format' => "long"]);
$reqbody = it::file_get_contents("php://input");
- $body .= ($trace and $t = it::exec('grep -h {0} `ls {1}/log/alertlog-*|tail -3` /dev/null 2>/dev/null | grep ^2 | cut -d : -f 1-2 | sort | uniq -c | tail -10', $trace, $home)) ? "Histogram: (last 10 affected minutes in 3 days)\n$t\n" : "";
+ $body .= ($trace and $t = it::exec('grep -h {0} `ls 2>/dev/null {1}/log/alertlog-*|tail -3` /dev/null 2>/dev/null | grep ^2 | cut -d : -f 1-2 | sort | uniq -c | tail -10', $trace, $home)) ? "Histogram: (last 10 affected minutes in 3 days)\n$t\n" : "";
$body .= $mediumstack ? "Stack:\n " . it::replace(["\n" => "\n "], $mediumstack) . "\n" : "";
$body .= $_GET ? "\$_GET: " . var_export($_GET, true) . "\n\n" : "";
$body .= $_POST ? "\$_POST: " . var_export($_POST, true) . "\n\n" : "";