Skip to content

Commit cf216be

Browse files
authored
Change ERR to Notice for tunnel term create fail (#2219)
*For a specific dst ip, if the tunnel terminator already exists, trying to create a term for the same IP one for another different tunnel should not return ERR log. This is an expected flow, and the log can be NOTICE level.
1 parent 50d5be2 commit cf216be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orchagent/tunneldecaporch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ bool TunnelDecapOrch::addDecapTunnelTermEntries(string tunnelKey, IpAddresses ds
384384
// check if the there's an entry already for the ip
385385
if (existingIps.find(ip) != existingIps.end())
386386
{
387-
SWSS_LOG_ERROR("%s already exists. Did not create entry.", ip.c_str());
387+
SWSS_LOG_NOTICE("%s already exists. Did not create entry.", ip.c_str());
388388
}
389389
else
390390
{

0 commit comments

Comments
 (0)