File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -966,7 +966,7 @@ void BufferOrch::doTask()
966
966
// ├── buffer queue
967
967
// └── buffer pq table
968
968
969
- SWSS_LOG_INFO (" Handling buffer task" );
969
+ SWSS_LOG_DEBUG (" Handling buffer task" );
970
970
971
971
auto pool_consumer = getExecutor ((APP_BUFFER_POOL_TABLE_NAME));
972
972
pool_consumer->drain ();
Original file line number Diff line number Diff line change @@ -793,19 +793,20 @@ bool MuxOrch::handlePeerSwitch(const Request& request)
793
793
794
794
if (op == SET_COMMAND)
795
795
{
796
+ mux_peer_switch_ = peer_ip;
797
+
796
798
// Create P2P tunnel when peer_ip is available.
797
799
IpAddresses dst_ips = decap_orch_->getDstIpAddresses (MUX_TUNNEL);
798
800
if (!dst_ips.getSize ())
799
801
{
800
- SWSS_LOG_NOTICE (" Mux tunnel not yet created for '%s' peer ip '%s'" ,
801
- MUX_TUNNEL, peer_ip.to_string ().c_str ());
802
+ SWSS_LOG_INFO (" Mux tunnel not yet created for '%s' peer ip '%s'" ,
803
+ MUX_TUNNEL, peer_ip.to_string ().c_str ());
802
804
return false ;
803
805
}
804
806
805
807
auto it = dst_ips.getIpAddresses ().begin ();
806
808
const IpAddress& dst_ip = *it;
807
809
mux_tunnel_id_ = create_tunnel (&peer_ip, &dst_ip);
808
- mux_peer_switch_ = peer_ip;
809
810
SWSS_LOG_NOTICE (" Mux peer ip '%s' was added, peer name '%s'" ,
810
811
peer_ip.to_string ().c_str (), peer_name.c_str ());
811
812
}
Original file line number Diff line number Diff line change @@ -758,7 +758,7 @@ IpAddresses TunnelDecapOrch::getDstIpAddresses(std::string tunnelKey)
758
758
{
759
759
if (tunnelTable.find (tunnelKey) == tunnelTable.end ())
760
760
{
761
- SWSS_LOG_ERROR (" Tunnel not found %s" , tunnelKey.c_str ());
761
+ SWSS_LOG_INFO (" Tunnel not found %s" , tunnelKey.c_str ());
762
762
return IpAddresses ();
763
763
}
764
764
You can’t perform that action at this time.
0 commit comments