Skip to content

Commit

Permalink
DPL: fix formatting and format string (#12572)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf authored Jan 22, 2024
1 parent 23f2ff7 commit 88d397a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Framework/Core/src/CommonServices.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ o2::framework::ServiceSpec CommonServices::streamContextSpec()
}
}
if (didCreate == false && messageContext.didDispatch() == true) {
O2_SIGNPOST_EVENT_EMIT(stream_context, cid, "postProcessingCallbacks", "Data created out of band didCreate == %b && messageContext.didDispatch == %b",
O2_SIGNPOST_EVENT_EMIT(stream_context, cid, "postProcessingCallbacks", "Data created out of band didCreate == %d && messageContext.didDispatch == %d",
didCreate,
messageContext.didDispatch());
return;
Expand All @@ -219,8 +219,7 @@ o2::framework::ServiceSpec CommonServices::streamContextSpec()
if (matcher.lifetime == Lifetime::Timeframe) {
LOGP(error, "Expected Lifetime::Timeframe data {} was not created for timeslice {} and might result in dropped timeframes", DataSpecUtils::describe(matcher), timeslice);
}
}
},
} },
.kind = ServiceKind::Stream};
}

Expand Down

0 comments on commit 88d397a

Please sign in to comment.