minor
All checks were successful
Build on RHEL9 / build (push) Successful in 2m55s
Build on RHEL8 / build (push) Successful in 4m58s

This commit is contained in:
2025-06-20 17:35:04 +02:00
parent 230d43d1fe
commit 953c3f1587

View File

@@ -409,13 +409,13 @@ void Implementation::setPortROIs(const std::array<defs::ROI, 2> &args) {
for (size_t i = 0; i != dataStreamer.size(); ++i) {
dataStreamer[i]->SetPortROI(portRois[i]);
}
LOG(logINFOBLUE) << "Rois (per port): " << ToString(portRois);
LOG(logINFO) << "Rois (per port): " << ToString(portRois);
}
void Implementation::setMultiROIMetadata(
const std::vector<slsDetectorDefs::ROI> &args) {
multiRoiMetadata = args;
LOG(logINFOBLUE) << "Multi ROI Metadata: " << ToString(multiRoiMetadata);
LOG(logINFO) << "Multi ROI Metadata: " << ToString(multiRoiMetadata);
}
/**************************************************