filtering out odd logline happening in DMRplus-network

This commit is contained in:
dg9vh 2016-10-19 18:43:46 +00:00
parent 0aa06e46ec
commit 3aeef4e50f
2 changed files with 3 additions and 1 deletions

View file

@ -186,6 +186,8 @@ function getHeardList($logLines, $onlyLast) {
continue;
} else if(strpos($logLine,"overflow in the DMR slot RF queue")) {
continue;
} else if(strpos($logLine,"bad LC received")) {
continue;
}
if(strpos($logLine,"end of") || strpos($logLine,"watchdog has expired") || strpos($logLine,"ended RF data") || strpos($logLine,"ended network")) {

View file

@ -1,3 +1,3 @@
<?php
define("VERSION", "20161013-4");
define("VERSION", "20161019-1");
?>