From db7514f9b9df2e0273d86ff4e957841bed5b1439 Mon Sep 17 00:00:00 2001 From: Erin Power Date: Fri, 22 Mar 2024 16:21:16 +0100 Subject: [PATCH] Move tracing logs to debug Signed-off-by: Erin Power --- src/profiler.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/profiler.rs b/src/profiler.rs index d7314ea7..2ebb9dbf 100644 --- a/src/profiler.rs +++ b/src/profiler.rs @@ -416,7 +416,7 @@ impl Profiler { impl Profiler { pub fn start(&mut self) -> Result<()> { - log::info!("starting cpu profiler"); + log::debug!("starting cpu profiler"); if self.running { Err(Error::Running) } else { @@ -436,7 +436,7 @@ impl Profiler { } pub fn stop(&mut self) -> Result<()> { - log::info!("stopping cpu profiler"); + log::debug!("stopping cpu profiler"); if self.running { self.unregister_signal_handler()?; self.init()?;