From 377e041e1f7033c737bf71cbb5ae859e48ff0469 Mon Sep 17 00:00:00 2001 From: dgsudharsan Date: Fri, 24 Jan 2025 05:26:48 +0000 Subject: [PATCH] [202412_RC][syncd] Update log level for bulk api #1492 --- syncd/Syncd.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/syncd/Syncd.cpp b/syncd/Syncd.cpp index 09795cf47..5afb98730 100644 --- a/syncd/Syncd.cpp +++ b/syncd/Syncd.cpp @@ -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; } @@ -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()); } @@ -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; }