Skip to content

Commit c72367e

Browse files
committed
DPL: fix wrong log message when parsing metrics
Integrating with Monitoring changed the order of the matches.
1 parent 034f8f0 commit c72367e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/runDataProcessing.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ void processChildrenOutput(DriverInfo& driverInfo, DeviceInfos& infos, DeviceSpe
429429
// Then we check if it is part of our Poor man control system
430430
// if yes, we execute the associated command.
431431
if (DeviceMetricsHelper::parseMetric(token, match)) {
432-
LOG(DEBUG) << "Found metric with key " << match[2] << " and value " << match[4];
432+
LOG(DEBUG) << "Found metric with key " << match[1] << " and value " << match[3];
433433
// We use this callback to cache which metrics are needed to provide a
434434
// the DataRelayer view.
435435
DeviceMetricsHelper::processMetric(match, metrics, updateDataRelayerViewIndex);

0 commit comments

Comments
 (0)