Reduce WARN to VERBOSE in network.c

pull/1626/head
Mike Black W9MDB 2024-09-22 09:52:49 -05:00
rodzic e24617a4fe
commit 4613f7d933
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1090,8 +1090,8 @@ void *multicast_publisher(void *arg)
if (errno != 0 || flag == 0) if (errno != 0 || flag == 0)
{ {
rig_debug(RIG_DEBUG_ERR, rig_debug(RIG_DEBUG_ERR,
"%s: error sending UDP packet: %s\n", __func__, "%s: error sending UDP packet: %s, send result=%d\n", __func__,
strerror(errno)); strerror(errno), (int)send_result);
flag = 1; flag = 1;
} }
} }
@ -1175,7 +1175,7 @@ static int is_networked(char *address, int address_length)
if (count > 1) if (count > 1)
{ {
rig_debug(RIG_DEBUG_WARN, rig_debug(RIG_DEBUG_VERBOSE,
"%s: more than 1 address found...multicast may not work\n", __func__); "%s: more than 1 address found...multicast may not work\n", __func__);
} }