From 53d15ddc58e8005343e3128b4c47c237206f673f Mon Sep 17 00:00:00 2001 From: Andrei Otcheretianski Date: Tue, 26 Nov 2024 11:10:10 +0200 Subject: [PATCH] NAN: Remove excessive debug print about the next timer As it polutes the log too much. Signed-off-by: Andrei Otcheretianski --- src/common/nan_de.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/nan_de.c b/src/common/nan_de.c index 0e6b4d5fd..2c1d0c4dc 100644 --- a/src/common/nan_de.c +++ b/src/common/nan_de.c @@ -680,7 +680,7 @@ static void nan_de_timer(void *eloop_ctx, void *timeout_ctx) if (next == 0) next = 1; - wpa_printf(MSG_DEBUG, "NAN: Next timer in %u ms", next); + eloop_register_timeout(next / 1000, (next % 1000) * 1000, nan_de_timer, de, NULL); } -- 2.47.2