Skip to content
Snippets Groups Projects
Commit c7fde18f authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #4396: Initial implementation

parent e0739c52
No related branches found
No related tags found
No related merge requests found
...@@ -850,6 +850,20 @@ void CEPlogProcessor::_processIONProcLine(const struct logline &logline) ...@@ -850,6 +850,20 @@ void CEPlogProcessor::_processIONProcLine(const struct logline &logline)
RTDBPropertySet *inputBuffer = itsInputBuffers[processNr]; RTDBPropertySet *inputBuffer = itsInputBuffers[processNr];
if (logline.obsID >= 0) {
// will be flushed once other relevant meta data is found and flushed
inputBuffer->setValue("observationName", GCFPVString(str(format("%i") % logline.obsID).c_str()), logline.timestamp, false);
}
if ((result = strstr(logline.target, "station "))) {
char stationName[6];
strncpy(stationName, result + 8, 5);
stationName[5] = '\0';
// will be flushed once other relevant meta data is found and flushed
inputBuffer->setValue("process.logMsg", GCFPVString(stationName), logline.timestamp, false);
}
if (_recordLogMsg(logline)) { if (_recordLogMsg(logline)) {
inputBuffer->setValue("process.logMsg", GCFPVString(logline.fullmsg), logline.timestamp, true); inputBuffer->setValue("process.logMsg", GCFPVString(logline.fullmsg), logline.timestamp, true);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment