You don't need Alias|0000 since it not used on Last Heard List - getMMDVMLog

This commit is contained in:
CT2JAY 2017-02-20 11:18:52 +00:00
parent d44c2623a0
commit 9125afb8c6

View file

@ -189,7 +189,7 @@ function getMMDVMLog() {
// Open Logfile and copy loglines into LogLines-Array()
$logPath = MMDVMLOGPATH."/".MMDVMLOGPREFIX."-".date("Y-m-d").".log";
//$logLines = explode("\n", `grep M: $logPath`);
$logLines = explode("\n", `egrep -h "from|end|watchdog|lost|Alias|0000" $logPath`);
$logLines = explode("\n", `egrep -h "from|end|watchdog|lost" $logPath`);
return $logLines;
}