]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Include time stamp in SEQ errors in the log file
authorc vw <dl1ycf@darc.de>
Fri, 26 Nov 2021 15:26:21 +0000 (16:26 +0100)
committerc vw <dl1ycf@darc.de>
Fri, 26 Nov 2021 15:26:21 +0000 (16:26 +0100)
old_protocol.c

index 72e581b712b521ef93ca5f061fa9e2af0e92e53b..e5c65644fd1910d59cbe1fba44a54babac7ad6b7 100644 (file)
@@ -555,7 +555,11 @@ static gpointer receive_thread(gpointer arg) {
              // A sequence error with a seqnum of zero usually indicates a METIS restart
              // and is no error condition
               if (sequence != 0 && sequence != last_seq_num+1) {
-               g_print("SEQ ERROR: last %ld, recvd %ld\n", (long) last_seq_num, (long) sequence);
+               struct timespec ts;
+               double now;
+               clock_gettime(CLOCK_MONOTONIC, &ts);
+               now=ts.tv_sec + 1E-9*ts.tv_nsec;
+               g_print("SEQ ERROR: T=%0.3f last %ld, recvd %ld\n", now, (long) last_seq_num, (long) sequence);
                 sequence_errors++;
              }
              last_seq_num=sequence;