We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33a1d2e commit 76ba288Copy full SHA for 76ba288
1 file changed
Framework/Core/src/DataProcessingHelpers.cxx
@@ -79,6 +79,10 @@ void doSendOldestPossibleTimeframe(ServiceRegistryRef ref, fair::mq::TransportFa
79
parts.AddPart(std::move(header));
80
parts.AddPart(std::move(payload));
81
82
+ auto* hb = reinterpret_cast<const uint32_t*>(header->GetData());
83
+ LOGP(error, "SENDOPT idx={} ts={} firstWord={:#010x} hdrSize={}",
84
+ index.value, timeslice, hb ? *hb : 0u, header->GetSize());
85
+
86
callback(parts, index, ref);
87
}
88
0 commit comments