From 83992c5ce4aac5556b64e57ab30092baf8e3d5d8 Mon Sep 17 00:00:00 2001 From: kinglevel Date: Wed, 3 Jul 2024 11:01:13 +0200 Subject: [PATCH] label on Activity output --- src/rtl_airband.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtl_airband.cpp b/src/rtl_airband.cpp index baf1594..fc9a87d 100644 --- a/src/rtl_airband.cpp +++ b/src/rtl_airband.cpp @@ -124,7 +124,7 @@ void* controller_thread(void* params) { } else { if (consecutive_squelch_off == 10) { if (log_scan_activity) - log(LOG_INFO, "Activity on %7.3f MHz\n", dev->channels[0].freqlist[i].frequency / 1000000.0); + log(LOG_INFO, "Activity on %7.3f MHz (%s)\n", dev->channels[0].freqlist[i].frequency / 1000000.0, dev->channels[0].freqlist[i].label); if (i != dev->last_frequency) { // squelch has just opened on a new frequency - we might need to update outputs' metadata gettimeofday(&tv, NULL);