Increase filtering tail limit for logging, fixes #6652

This commit is contained in:
jim-p 2016-07-28 09:57:43 -04:00
parent cad2272f6c
commit f1773759e2

View File

@ -66,8 +66,9 @@ function conv_log_filter($logfile, $nentries, $tail = 50, $filtertext = "", $fil
return;
}
/* Safety belt to ensure we get enough lines for filtering without overloading the parsing code */
if ($filtertext) {
$tail = 5000;
$tail = 10000;
}
/* Always do a reverse tail, to be sure we're grabbing the 'end' of the log. */