Skip to content

Commit 88d397a

Browse files
authored
DPL: fix formatting and format string (#12572)
1 parent 23f2ff7 commit 88d397a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Framework/Core/src/CommonServices.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ o2::framework::ServiceSpec CommonServices::streamContextSpec()
193193
}
194194
}
195195
if (didCreate == false && messageContext.didDispatch() == true) {
196-
O2_SIGNPOST_EVENT_EMIT(stream_context, cid, "postProcessingCallbacks", "Data created out of band didCreate == %b && messageContext.didDispatch == %b",
196+
O2_SIGNPOST_EVENT_EMIT(stream_context, cid, "postProcessingCallbacks", "Data created out of band didCreate == %d && messageContext.didDispatch == %d",
197197
didCreate,
198198
messageContext.didDispatch());
199199
return;
@@ -219,8 +219,7 @@ o2::framework::ServiceSpec CommonServices::streamContextSpec()
219219
if (matcher.lifetime == Lifetime::Timeframe) {
220220
LOGP(error, "Expected Lifetime::Timeframe data {} was not created for timeslice {} and might result in dropped timeframes", DataSpecUtils::describe(matcher), timeslice);
221221
}
222-
}
223-
},
222+
} },
224223
.kind = ServiceKind::Stream};
225224
}
226225

0 commit comments

Comments
 (0)