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()?;