From 36f7332ddab56c618513c4b57edc99e3b735c27c Mon Sep 17 00:00:00 2001 From: madhanmellanox <62459540+madhanmellanox@users.noreply.github.com> Date: Thu, 14 Jan 2021 00:40:57 -0800 Subject: [PATCH] modified ERR log to NOTICE log for FDB notification failure after VLAN delete (#1595) the VLAN is already removed and we are receiving a FLUSH notification for the same, it should be treated as a warning and not an error. Co-authored-by: Madhan Babu --- orchagent/fdborch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchagent/fdborch.cpp b/orchagent/fdborch.cpp index 01a4581a6060..8e2cf96af842 100644 --- a/orchagent/fdborch.cpp +++ b/orchagent/fdborch.cpp @@ -184,7 +184,7 @@ void FdbOrch::update(sai_fdb_event_t type, if (!m_portsOrch->getPort(entry->bv_id, vlan)) { - SWSS_LOG_ERROR("FdbOrch LEARN notification: Failed to locate vlan port from bv_id 0x%" PRIx64, entry->bv_id); + SWSS_LOG_NOTICE("FdbOrch LEARN notification: Failed to locate vlan port from bv_id 0x%" PRIx64, entry->bv_id); return; }