diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-10 09:33:19 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-10 09:33:19 +0100 |
commit | 869790a44375cea1c731eb90e3a1377bd6c77065 (patch) | |
tree | 61b2381b50ab50def731e0e87e2d807766b2d524 /src/DabMux.cpp | |
parent | 9a97a88a93bacd62d8426019de9090d35c00054b (diff) | |
download | dabmux-869790a44375cea1c731eb90e3a1377bd6c77065.tar.gz dabmux-869790a44375cea1c731eb90e3a1377bd6c77065.tar.bz2 dabmux-869790a44375cea1c731eb90e3a1377bd6c77065.zip |
Remove INFO message 'ETI frame number'
Diffstat (limited to 'src/DabMux.cpp')
-rw-r--r-- | src/DabMux.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/DabMux.cpp b/src/DabMux.cpp index cf1f70c..f291976 100644 --- a/src/DabMux.cpp +++ b/src/DabMux.cpp @@ -1729,7 +1729,7 @@ int main(int argc, char *argv[]) (*subchannel)->operations.unlock((*subchannel)->data); } if (result < 0) { - etiLog.print(TcpLog::INFO, "ETI frame number: %i\n", currentFrame); + etiLog.print(TcpLog::INFO, "Subchannel %d read failed at ETI frame number: %i\n", (*subchannel)->id, currentFrame); } index += sizeSubchannel; } @@ -1802,6 +1802,7 @@ int main(int argc, char *argv[]) dumpBytes(dumpData, sizeSubChannel, stderr); #endif // DUMP_BRIDGE +#if _DEBUG if (currentFrame % 100 == 0) { if (enableTist) { etiLog.print(TcpLog::INFO, "ETI frame number %i Timestamp: %d + %f\n", @@ -1813,6 +1814,7 @@ int main(int argc, char *argv[]) currentFrame, mnsc_time.tv_sec); } } +#endif } EXIT: |