From 4613f7d9331686ab5d75a424aebaa05e52b30d32 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 22 Sep 2024 09:52:49 -0500 Subject: [PATCH] Reduce WARN to VERBOSE in network.c --- src/network.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/network.c b/src/network.c index 87c07cad8..c4f1db757 100644 --- a/src/network.c +++ b/src/network.c @@ -1090,8 +1090,8 @@ void *multicast_publisher(void *arg) if (errno != 0 || flag == 0) { rig_debug(RIG_DEBUG_ERR, - "%s: error sending UDP packet: %s\n", __func__, - strerror(errno)); + "%s: error sending UDP packet: %s, send result=%d\n", __func__, + strerror(errno), (int)send_result); flag = 1; } } @@ -1175,7 +1175,7 @@ static int is_networked(char *address, int address_length) 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__); }