summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/etc/inc/filter_log.inc10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/etc/inc/filter_log.inc b/src/etc/inc/filter_log.inc
index 4a478ce..848ff1d 100644
--- a/src/etc/inc/filter_log.inc
+++ b/src/etc/inc/filter_log.inc
@@ -236,11 +236,6 @@ function parse_unknown_log_line($line) {
list($all, $flent['time'], $flent['message']) = $log_split;
- if($g['debug']) {
- log_error(sprintf(gettext("There was a error parsing: %s. Please report to mailing list or forum."), $flent['process']));
- return "";
- }
-
/* If there is time, and message, fields, then the line should be usable/good */
if (!((trim($flent['time']) == "") && (trim($flent['message']) == ""))) {
return $flent;
@@ -276,11 +271,6 @@ function parse_system_log_line($line) {
list($all, $flent['time'], $flent['host'], $flent['process'], $flent['pid'], $flent['message']) = $log_split;
- if($g['debug']) {
- log_error(sprintf(gettext("There was a error parsing: %s. Please report to mailing list or forum."), $flent['process']));
- return "";
- }
-
/* If there is time, process, and message, fields, then the line should be usable/good */
if (!((trim($flent['time']) == "") && (trim($flent['process']) == "") && (trim($flent['message']) == ""))) {
return $flent;
OpenPOWER on IntegriCloud