@@ -1185,7 +1185,7 @@ bool FdbOrch::removeFdbEntry(const FdbEntry& entry, FdbOrigin origin)
1185
1185
* but we should not delete this mac here since now
1186
1186
* mac in orchagent represents locally learnt
1187
1187
*/
1188
- SWSS_LOG_NOTICE (" FdbOrch RemoveFDBEntry: mac=%s fdb origin is different; found_origin:%d delete_origin:%d" ,
1188
+ SWSS_LOG_INFO (" FdbOrch RemoveFDBEntry: mac=%s fdb origin is different; found_origin:%d delete_origin:%d" ,
1189
1189
entry.mac .to_string ().c_str (), fdbData.origin , origin);
1190
1190
1191
1191
/* We may still have the mac in saved-fdb probably due to unavailability
@@ -1212,7 +1212,7 @@ bool FdbOrch::removeFdbEntry(const FdbEntry& entry, FdbOrigin origin)
1212
1212
return true ; // FIXME: it should be based on status. Some could be retried. some not
1213
1213
}
1214
1214
1215
- SWSS_LOG_NOTICE (" Removed mac=%s bv_id=0x%lx port:%s" ,
1215
+ SWSS_LOG_INFO (" Removed mac=%s bv_id=0x%lx port:%s" ,
1216
1216
entry.mac .to_string ().c_str (), entry.bv_id , port.m_alias .c_str ());
1217
1217
1218
1218
port.m_fdb_count --;
@@ -1264,7 +1264,7 @@ void FdbOrch::deleteFdbEntryFromSavedFDB(const MacAddress &mac,
1264
1264
{
1265
1265
if (iter->fdbData .origin == origin)
1266
1266
{
1267
- SWSS_LOG_NOTICE (" FDB entry found in saved fdb. deleting..."
1267
+ SWSS_LOG_INFO (" FDB entry found in saved fdb. deleting..."
1268
1268
" mac=%s vlan_id=0x%x origin:%d port:%s" ,
1269
1269
mac.to_string ().c_str (), vlanId, origin,
1270
1270
itr.first .c_str ());
@@ -1275,7 +1275,7 @@ void FdbOrch::deleteFdbEntryFromSavedFDB(const MacAddress &mac,
1275
1275
}
1276
1276
else
1277
1277
{
1278
- SWSS_LOG_NOTICE (" FDB entry found in saved fdb, but Origin is "
1278
+ SWSS_LOG_INFO (" FDB entry found in saved fdb, but Origin is "
1279
1279
" different mac=%s vlan_id=0x%x reqOrigin:%d "
1280
1280
" foundOrigin:%d port:%s, IGNORED" ,
1281
1281
mac.to_string ().c_str (), vlanId, origin,
0 commit comments