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
This commit is contained in:
Samuel Thibault 2022-07-13 11:18:50 +02:00
parent e9afb88de7
commit ab58da4056

2
ppp.c
View file

@ -1626,7 +1626,7 @@ void processipv6cp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l)
} }
else 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); STAT(tunnel_rx_errors);
return; return;
} }