From 9ffb34f9d4f6acba6be98f2f73a66a2275479449 Mon Sep 17 00:00:00 2001 From: gobhardw Date: Fri, 30 Jun 2023 14:40:59 +0530 Subject: [PATCH] SWDEV-408750: Reoving Record_ID from HIP api trace Change-Id: Iba9022246def090b1bbb90b68e67d54bab1bea31 --- plugin/file/file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/file/file.cpp b/plugin/file/file.cpp index afe58261af..4efda06bd2 100644 --- a/plugin/file/file.cpp +++ b/plugin/file/file.cpp @@ -216,7 +216,7 @@ class file_plugin_t { case ACTIVITY_DOMAIN_HIP_API: { if (hip_api_header_written_.load(std::memory_order_relaxed)) return; output_file = get_output_file(output_type_t::TRACER, ACTIVITY_DOMAIN_HIP_API); - *output_file << "Record_ID,Domain,Function,Start_Timestamp,End_Timestamp,Correlation_ID" + *output_file << "Domain,Function,Start_Timestamp,End_Timestamp,Correlation_ID" << std::endl; *output_file << std::endl; hip_api_header_written_.exchange(true, std::memory_order_release);