|
10 | 10 | // or submit itself to any jurisdiction. |
11 | 11 | #include "Framework/TimesliceIndex.h" |
12 | 12 | #include "Framework/Signpost.h" |
| 13 | +#include <fairmq/Channel.h> |
13 | 14 |
|
14 | 15 | O2_DECLARE_DYNAMIC_LOG(timeslice_index); |
15 | 16 |
|
@@ -162,11 +163,11 @@ TimesliceIndex::OldestInputInfo TimesliceIndex::setOldestPossibleInput(Timeslice |
162 | 163 | } |
163 | 164 | } |
164 | 165 | if (changed && mOldestPossibleInput.timeslice.value != result.timeslice.value) { |
165 | | - O2_SIGNPOST_EVENT_EMIT(timeslice_index, tid, "setOldestPossibleInput", "Success: Oldest possible input is %zu due to channel %d", |
166 | | - result.timeslice.value, result.channel.value); |
| 166 | + O2_SIGNPOST_EVENT_EMIT(timeslice_index, tid, "setOldestPossibleInput", "Success (channel %d): Oldest possible input is %zu due to channel %d", |
| 167 | + channel.value, result.timeslice.value, result.channel.value); |
167 | 168 | } else if (mOldestPossibleInput.timeslice.value != result.timeslice.value) { |
168 | | - O2_SIGNPOST_EVENT_EMIT(timeslice_index, tid, "setOldestPossibleInput", "Oldest possible input updated from timestamp: %zu --> %zu", |
169 | | - mOldestPossibleInput.timeslice.value, result.timeslice.value); |
| 169 | + O2_SIGNPOST_EVENT_EMIT(timeslice_index, tid, "setOldestPossibleInput", "channel %d: Oldest possible input updated from timestamp: %zu --> %zu", |
| 170 | + channel.value, mOldestPossibleInput.timeslice.value, result.timeslice.value); |
170 | 171 | } else { |
171 | 172 | O2_SIGNPOST_EVENT_EMIT(timeslice_index, tid, "setOldestPossibleInput", "No change in oldest possible input"); |
172 | 173 | } |
|
0 commit comments