From 61267426484b011893fed98de5daf3c2111bcf15 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Wed, 17 Nov 2021 10:31:54 +0200 Subject: [PATCH] intel/ds: remove verbose messages At high frequency sampling, this generates a lot of messages. Signed-off-by: Lionel Landwerlin Reviewed-by: Antonio Caggiano Part-of: --- src/intel/ds/intel_pps_driver.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/intel/ds/intel_pps_driver.cc b/src/intel/ds/intel_pps_driver.cc index d90ba41631f..97729aa7ebc 100644 --- a/src/intel/ds/intel_pps_driver.cc +++ b/src/intel/ds/intel_pps_driver.cc @@ -286,11 +286,9 @@ bool IntelDriver::dump_perfcnt() auto new_records = parse_perf_records(metric_buffer, total_bytes_read); if (new_records.empty()) { - PPS_LOG("No new records"); // No new records from the GPU yet return false; } else { - PPS_LOG("Records parsed bytes: %lu", total_bytes_read); // Records are parsed correctly, so we can reset the // number of bytes read so far from the metric set total_bytes_read = 0;