Reduce a couple of debug statements from ERROR to VERBOSE

pull/1092/head
Mike Black W9MDB 2022-07-22 12:43:22 -05:00
rodzic 72c6bbf2c3
commit 1c0655a9f5
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -681,7 +681,7 @@ static int netrigctl_open(RIG *rig)
else if (strcmp(setting, "ptt_type") == 0)
{
ptt_type_t temp = (ptt_type_t)strtol(value, NULL, 0);
rig_debug(RIG_DEBUG_ERR, "%s: ptt_type='%s'(%d)\n", __func__, value, temp);
rig_debug(RIG_DEBUG_VERBOSE, "%s: ptt_type='%s'(%d)\n", __func__, value, temp);
if (RIG_PTT_RIG_MICDATA == rig->state.pttport.type.ptt
|| temp == RIG_PTT_RIG_MICDATA)
@ -707,7 +707,7 @@ static int netrigctl_open(RIG *rig)
else if (strcmp(setting, "targetable_vfo") == 0)
{
rig->caps->targetable_vfo = strtol(value, NULL, 0);
rig_debug(RIG_DEBUG_ERR, "%s: targetable_vfo=0x%2x\n", __func__,
rig_debug(RIG_DEBUG_VERBOSE, "%s: targetable_vfo=0x%2x\n", __func__,
rig->caps->targetable_vfo);
}
@ -2685,7 +2685,7 @@ struct rig_caps netrigctl_caps =
RIG_MODEL(RIG_MODEL_NETRIGCTL),
.model_name = "NET rigctl",
.mfg_name = "Hamlib",
.version = "20220706.0",
.version = "20220722.0",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_OTHER,