diff --git a/src/classes/logstreamdb.class.php b/src/classes/logstreamdb.class.php
index 3f21eea..5d7d857 100644
--- a/src/classes/logstreamdb.class.php
+++ b/src/classes/logstreamdb.class.php
@@ -257,6 +257,10 @@ class LogStreamDB extends LogStream {
$arrProperitesOut[$property] = '';
}
+ // Run optional Message Parsers now
+ if ( isset($arrProperitesOut[SYSLOG_MESSAGE]) )
+ $this->_logStreamConfigObj->ProcessMsgParsers($arrProperitesOut[SYSLOG_MESSAGE], $arrProperitesOut);
+
// Set uID to the PropertiesOut! //DEBUG -> $this->_currentRecordNum;
$uID = $arrProperitesOut[SYSLOG_UID] = $this->bufferedRecords[$this->_currentRecordNum][$dbmapping[$szTableType][SYSLOG_UID]];
@@ -727,7 +731,7 @@ class LogStreamDB extends LogStream {
// Append LIMIT clause
$szSql .= " LIMIT " . $this->_currentRecordStart . ", " . $this->_logStreamConfigObj->RecordsPerQuery;
-echo $szSql . "
";
+//echo $szSql . "
";
// Perform Database Query
$myquery = mysql_query($szSql, $this->_dbhandle);
diff --git a/src/classes/logstreampdo.class.php b/src/classes/logstreampdo.class.php
index 8142c10..91d6d2d 100644
--- a/src/classes/logstreampdo.class.php
+++ b/src/classes/logstreampdo.class.php
@@ -292,6 +292,10 @@ class LogStreamPDO extends LogStream {
$arrProperitesOut[$property] = '';
}
+ // Run optional Message Parsers now
+ if ( isset($arrProperitesOut[SYSLOG_MESSAGE]) )
+ $this->_logStreamConfigObj->ProcessMsgParsers($arrProperitesOut[SYSLOG_MESSAGE], $arrProperitesOut);
+
// Set uID to the PropertiesOut! //DEBUG -> $this->_currentRecordNum;
$uID = $arrProperitesOut[SYSLOG_UID] = $this->bufferedRecords[$this->_currentRecordNum][$dbmapping[$szTableType][SYSLOG_UID]];