]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
add IP address to timer message
authorAlan T. DeKok <aland@freeradius.org>
Mon, 10 Feb 2025 17:48:02 +0000 (12:48 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 10 Feb 2025 17:59:38 +0000 (12:59 -0500)
src/lib/io/master.c

index cbc9ddb70b9c07c97a4c691a24a3ed06141e3fdd..4dc7f4880edf82dfa790aa23be3d331fd377295d 100644 (file)
@@ -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.