removed log as error already printed

This commit is contained in:
mazzol_a 2025-04-30 12:17:16 +02:00 committed by GitHub
parent 062002243e
commit 36faec6ad3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -295,8 +295,6 @@ void DataProcessor::ThreadExecution() {
memImage->data); memImage->data);
} catch (const std::exception &e) { } catch (const std::exception &e) {
fifo->FreeAddress(buffer); fifo->FreeAddress(buffer);
LOG(logERROR) << "DataProcessor " << index << ": Failed to Process. "
<< e.what() << std::endl;
throw RuntimeError(e.what()); throw RuntimeError(e.what());
} }