diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-15 13:42:23 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-15 14:00:48 +0200 |
commit | d20b9a0c8f90fbc373dbd5757b5c6a03bbfd8c83 (patch) | |
tree | b32dc3a732377b2d094145d929bf39b44ee4366c /src/utils.cpp | |
parent | 55a66f6408042abfd102f92fd0072a000d8e0235 (diff) | |
download | dabmux-d20b9a0c8f90fbc373dbd5757b5c6a03bbfd8c83.tar.gz dabmux-d20b9a0c8f90fbc373dbd5757b5c6a03bbfd8c83.tar.bz2 dabmux-d20b9a0c8f90fbc373dbd5757b5c6a03bbfd8c83.zip |
Add FIG0/19
Diffstat (limited to 'src/utils.cpp')
-rw-r--r-- | src/utils.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index 1f6754d..b45f930 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -554,5 +554,13 @@ void printEnsemble(const boost::shared_ptr<dabEnsemble> ensemble) } etiLog.log(info, " intl. table. %d", ensemble->international_table); + if (ensemble->clusters.empty()) { + etiLog.level(info) << " No announcement clusters defined"; + } + else { + for (const auto& cluster : ensemble->clusters) { + etiLog.level(info) << cluster->tostring(); + } + } } |