Skip to content

Commit 275917a

Browse files
committed
detect non-continuous TF ordering
1 parent 0f945d7 commit 275917a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/receiverFMQ.cxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,9 @@ int main(int argc, const char** argv)
382382
}
383383
}
384384
if (stf->timeframeId != lastTFid) {
385+
if ((lastTFid) && (stf->timeframeId != lastTFid + 1)) {
386+
theLog.log(LogWarningSupport_(3237), "Non-continuous TF id ordering: was %d now %d", (int)lastTFid, (int)stf->timeframeId );
387+
}
385388
lastTFid = stf->timeframeId;
386389
nTF++;
387390
}

0 commit comments

Comments
 (0)