From 886ba9bf344b6aa3b48560b2d56a483129cad358 Mon Sep 17 00:00:00 2001 From: Shuotian Cheng Date: Mon, 8 Jul 2019 17:40:33 -0700 Subject: [PATCH] [vxlanorch]: Add extra info into NOTICE logs (#891) --- orchagent/vnetorch.cpp | 2 +- orchagent/vxlanorch.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/orchagent/vnetorch.cpp b/orchagent/vnetorch.cpp index 24a1492dbfb7..b92273830757 100644 --- a/orchagent/vnetorch.cpp +++ b/orchagent/vnetorch.cpp @@ -1454,7 +1454,7 @@ bool VNetOrch::addOperation(const Request& request) vnet_name.c_str(), tunnel.c_str()); } - SWSS_LOG_INFO("VNET '%s' was added ", vnet_name.c_str()); + SWSS_LOG_NOTICE("VNET '%s' was added ", vnet_name.c_str()); } else { diff --git a/orchagent/vxlanorch.cpp b/orchagent/vxlanorch.cpp index 5815d4b0a015..a27603e008f8 100644 --- a/orchagent/vxlanorch.cpp +++ b/orchagent/vxlanorch.cpp @@ -605,7 +605,8 @@ bool VxlanTunnelOrch::createVxlanTunnelMap(string tunnelName, tunnel_map_type_t return false; } - SWSS_LOG_NOTICE("Vxlan map for tunnel '%s' was created", tunnelName.c_str()); + SWSS_LOG_NOTICE("Vxlan map for tunnel '%s' and vni '%d' was created", + tunnelName.c_str(), vni); return true; }