From 376c2a96ad2c1af33e30a407d09e445c49a04827 Mon Sep 17 00:00:00 2001 From: "Elwazir, Ammar" Date: Thu, 13 Feb 2025 12:59:29 -0600 Subject: [PATCH] Lowering log level for COMGR logs (#210) * Lowering log level for COMGR logs * Format Fix --- source/lib/rocprofiler-sdk/code_object/hip/code_object.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/lib/rocprofiler-sdk/code_object/hip/code_object.cpp b/source/lib/rocprofiler-sdk/code_object/hip/code_object.cpp index b71accca1c..d5ac44b68e 100644 --- a/source/lib/rocprofiler-sdk/code_object/hip/code_object.cpp +++ b/source/lib/rocprofiler-sdk/code_object/hip/code_object.cpp @@ -71,7 +71,7 @@ constexpr auto kernel_symbol_metadata_lookup = ".symbol"; { \ const char* reason = ""; \ amd_comgr_status_string(status, &reason); \ - ROCP_WARNING << #call << " failed with error code " << status << " :: " << reason; \ + ROCP_INFO << #call << " failed with error code " << status << " :: " << reason; \ } #define CHECK_WARNING_COMGR_EXT(call, ...) \ @@ -79,8 +79,8 @@ constexpr auto kernel_symbol_metadata_lookup = ".symbol"; { \ const char* reason = ""; \ amd_comgr_status_string(status, &reason); \ - ROCP_WARNING << #call << " failed with error code " << status << " :: " << reason \ - << " :: " << __VA_ARGS__; \ + ROCP_INFO << #call << " failed with error code " << status << " :: " << reason \ + << " :: " << __VA_ARGS__; \ } #define CHECK_RETURN_COMGR(call) \