Skip to content

Commit 886ba9b

Browse files
authored
[vxlanorch]: Add extra info into NOTICE logs (sonic-net#891)
1 parent d701ff8 commit 886ba9b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

orchagent/vnetorch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1454,7 +1454,7 @@ bool VNetOrch::addOperation(const Request& request)
14541454
vnet_name.c_str(), tunnel.c_str());
14551455
}
14561456

1457-
SWSS_LOG_INFO("VNET '%s' was added ", vnet_name.c_str());
1457+
SWSS_LOG_NOTICE("VNET '%s' was added ", vnet_name.c_str());
14581458
}
14591459
else
14601460
{

orchagent/vxlanorch.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,8 @@ bool VxlanTunnelOrch::createVxlanTunnelMap(string tunnelName, tunnel_map_type_t
605605
return false;
606606
}
607607

608-
SWSS_LOG_NOTICE("Vxlan map for tunnel '%s' was created", tunnelName.c_str());
608+
SWSS_LOG_NOTICE("Vxlan map for tunnel '%s' and vni '%d' was created",
609+
tunnelName.c_str(), vni);
609610
return true;
610611
}
611612

0 commit comments

Comments
 (0)