mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Increase filtering tail limit for logging, fixes #6652
This commit is contained in:
parent
cad2272f6c
commit
f1773759e2
@ -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. */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user