From 6005ebb754399a4339155eecc96740838f6a7311 Mon Sep 17 00:00:00 2001 From: dgsudharsan Date: Wed, 11 Oct 2023 15:17:50 +0000 Subject: [PATCH] Reducing the severity of oper fec attribute get failure --- orchagent/portsorch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchagent/portsorch.cpp b/orchagent/portsorch.cpp index 951d3ff8641..9fad001d771 100755 --- a/orchagent/portsorch.cpp +++ b/orchagent/portsorch.cpp @@ -7385,7 +7385,7 @@ bool PortsOrch::getPortOperFec(const Port& port, sai_port_fec_mode_t &fec_mode) sai_status_t ret = sai_port_api->get_port_attribute(port.m_port_id, 1, &attr); if (ret != SAI_STATUS_SUCCESS) { - SWSS_LOG_ERROR("Failed to get oper fec for %s", port.m_alias.c_str()); + SWSS_LOG_NOTICE("Failed to get oper fec for %s", port.m_alias.c_str()); return false; }