Skip to content

Commit

Permalink
Reducing the severity of oper fec attribute get failure
Browse files Browse the repository at this point in the history
  • Loading branch information
dgsudharsan committed Oct 11, 2023
1 parent 3599635 commit 6005ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchagent/portsorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 6005ebb

Please sign in to comment.