From a42aa4e80e25331f2dba063242a8250070775435 Mon Sep 17 00:00:00 2001 From: Giovanni Grieco Date: Sun, 6 Aug 2023 20:49:25 +0000 Subject: [PATCH] ipv6-static-routing: Downgrade log message to function level --- src/internet/model/ipv6-static-routing.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internet/model/ipv6-static-routing.cc b/src/internet/model/ipv6-static-routing.cc index 58bd1c412..82dd4c06e 100644 --- a/src/internet/model/ipv6-static-routing.cc +++ b/src/internet/model/ipv6-static-routing.cc @@ -867,7 +867,7 @@ Ipv6StaticRouting::NotifyAddRoute(Ipv6Address dst, uint32_t interface, Ipv6Address prefixToUse) { - NS_LOG_INFO(this << dst << mask << nextHop << interface << prefixToUse); + NS_LOG_FUNCTION(this << dst << mask << nextHop << interface << prefixToUse); if (nextHop == Ipv6Address::GetZero()) { AddNetworkRouteTo(dst, mask, interface);