From 63b31eac4e92bb345357d6434280adc693cef720 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 30 Jan 2022 10:51:49 -0600 Subject: [PATCH] Add tx_freq to debug statement --- src/rig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rig.c b/src/rig.c index 08831e361..f0a5dae60 100644 --- a/src/rig.c +++ b/src/rig.c @@ -3604,8 +3604,8 @@ int HAMLIB_API rig_set_split_freq(RIG *rig, vfo_t vfo, freq_t tx_freq) } - rig_debug(RIG_DEBUG_VERBOSE, "%s called vfo=%s, curr_vfo=%s\n", __func__, - rig_strvfo(vfo), rig_strvfo(rig->state.current_vfo)); + rig_debug(RIG_DEBUG_VERBOSE, "%s called vfo=%s, curr_vfo=%s, tx_freq=%.0f\n", __func__, + rig_strvfo(vfo), rig_strvfo(rig->state.current_vfo), tx_freq); caps = rig->caps;