From 92e40eca30b99e2dff25b957c6a582908b948f95 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 3 Apr 2021 10:32:43 -0500 Subject: [PATCH] In rig.c reduce tx_range from ERR to VERBOSE -- it's not fatal at all Was causing problems with powershell execution detecting the error condition --- src/rig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rig.c b/src/rig.c index 60e6edf9f..da09e9b07 100644 --- a/src/rig.c +++ b/src/rig.c @@ -498,7 +498,7 @@ RIG *HAMLIB_API rig_init(rig_model_t rig_model) if (rs->tx_range_list[0].startf == 0) { - rig_debug(RIG_DEBUG_ERR, "%s: rig does not have tx_range!!\n", __func__); + rig_debug(RIG_DEBUG_VERBOSE, "%s: rig does not have tx_range!!\n", __func__); //return(NULL); // this is not fatal }