remove error message in streamReadWrite

If the record hasn't been initialized correctly, we don't want the console
to be spammed every time the record gets processed.
This commit is contained in:
Benjamin Franksen
2019-10-10 14:51:56 +02:00
parent 7a48a5440e
commit 9b9e7bf722

View File

@ -587,7 +587,6 @@ long streamReadWrite(dbCommon *record)
if (!stream || stream->status == ERROR)
{
(void) recGblSetSevr(record, UDF_ALARM, INVALID_ALARM);
error("%s: Record not initialised correctly\n", record->name);
return ERROR;
}
return stream->process() ? stream->convert : ERROR;