From ab58da40567391ad4a0bcbe91ab77c925ac2ca0d Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Wed, 13 Jul 2022 11:18:50 +0200 Subject: [PATCH] Reduce loglevel of warning Various clients are making the same mistake, let's not flood our own logs with errors that are actually from the client. Ref #10 --- ppp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppp.c b/ppp.c index 87ec0e8..fa22ce0a 100644 --- a/ppp.c +++ b/ppp.c @@ -1626,7 +1626,7 @@ void processipv6cp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l) } else { - LOG(1, s, t, "No interface identifier in IPV6CP request\n"); + LOG(2, s, t, "No interface identifier in IPV6CP request\n"); STAT(tunnel_rx_errors); return; }