diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-18 09:30:15 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-18 09:30:15 +0100 |
commit | b8b09d9e2fd612fa449ca4955a9cdff41ec5aa15 (patch) | |
tree | 0ae023b77c851c0f908f4a1688a53c67871b3cfe | |
parent | 1839d5892202d36369f97bc4491fc8bdf64c96de (diff) | |
download | dabmux-b8b09d9e2fd612fa449ca4955a9cdff41ec5aa15.tar.gz dabmux-b8b09d9e2fd612fa449ca4955a9cdff41ec5aa15.tar.bz2 dabmux-b8b09d9e2fd612fa449ca4955a9cdff41ec5aa15.zip |
ClockTAI: Fix #if for debugging
-rw-r--r-- | lib/ClockTAI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ClockTAI.cpp b/lib/ClockTAI.cpp index c32c58d..d8e37ea 100644 --- a/lib/ClockTAI.cpp +++ b/lib/ClockTAI.cpp @@ -698,7 +698,7 @@ const json::map_t ClockTAI::get_all_values() const const auto& state = m_bulletin.state(); -#if CLOCK_TAI +#if TAI_TEST etiLog.level(debug) << "CALC FROM m_bulletin: " << state.valid << " " << state.offset << " " << state.expires_at << " -> " << state.expires_in(); etiLog.level(debug) << "CACHED IN m_state: " << m_state->valid << " " << |