Skip to content

Commit

Permalink
[vxlanorch]: Add extra info into NOTICE logs (sonic-net#891)
Browse files Browse the repository at this point in the history
  • Loading branch information
stcheng authored Jul 9, 2019
1 parent d701ff8 commit 886ba9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion orchagent/vnetorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
3 changes: 2 additions & 1 deletion orchagent/vxlanorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 886ba9b

Please sign in to comment.