From feab81c284d25edff1445ce8ae0ce9a8a0ad2f8f Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 10 Feb 2025 12:48:02 -0500 Subject: [PATCH] add IP address to timer message --- src/lib/io/master.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/io/master.c b/src/lib/io/master.c index cbc9ddb70b..4dc7f4880e 100644 --- a/src/lib/io/master.c +++ b/src/lib/io/master.c @@ -2022,8 +2022,6 @@ static void client_expiry_timer(fr_event_list_t *el, fr_time_t now, void *uctx) goto reset_timer; } - DEBUG("TIMER - checking status of client %s", client->radclient->shortname); - /* * It's a negative cache entry. Just delete it. */ @@ -2060,6 +2058,8 @@ static void client_expiry_timer(fr_event_list_t *el, fr_time_t now, void *uctx) return; } + DEBUG("TIMER - checking status of dynamic client %s %pV", client->radclient->shortname, fr_box_ipaddr(client->src_ipaddr)); + /* * It's a dynamically defined client. If no one is using * it, clean it up after an idle timeout. -- 2.47.3