Skip to content

Commit

Permalink
[202412_RC][syncd] Update log level for bulk api sonic-net#1492
Browse files Browse the repository at this point in the history
  • Loading branch information
dgsudharsan authored and stepanblyschak committed Jan 27, 2025
1 parent 8ab0526 commit 377e041
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions syncd/Syncd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ sai_status_t Syncd::processBulkOidCreate(

if (status == SAI_STATUS_NOT_IMPLEMENTED || status == SAI_STATUS_NOT_SUPPORTED)
{
SWSS_LOG_ERROR("bulkCreate api is not implemented or not supported, object_type = %s",
SWSS_LOG_WARN("bulkCreate api is not implemented or not supported, object_type = %s",
sai_serialize_object_type(objectType).c_str());
return status;
}
Expand Down Expand Up @@ -2095,7 +2095,7 @@ sai_status_t Syncd::processBulkOidSet(

if (status == SAI_STATUS_NOT_IMPLEMENTED || status == SAI_STATUS_NOT_SUPPORTED)
{
SWSS_LOG_ERROR("bulkSet api is not implemented or not supported, object_type = %s",
SWSS_LOG_WARN("bulkSet api is not implemented or not supported, object_type = %s",
sai_serialize_object_type(objectType).c_str());
}

Expand Down Expand Up @@ -2143,7 +2143,7 @@ sai_status_t Syncd::processBulkOidRemove(

if (status == SAI_STATUS_NOT_IMPLEMENTED || status == SAI_STATUS_NOT_SUPPORTED)
{
SWSS_LOG_ERROR("bulkRemove api is not implemented or not supported, object_type = %s",
SWSS_LOG_WARN("bulkRemove api is not implemented or not supported, object_type = %s",
sai_serialize_object_type(objectType).c_str());
return status;
}
Expand Down

0 comments on commit 377e041

Please sign in to comment.