Skip to content

Commit

Permalink
feat: change tracing::info to tracing::trace
Browse files Browse the repository at this point in the history
  • Loading branch information
uttarayan21 committed Nov 25, 2024
1 parent 99cadc8 commit a3c20e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mnn-sync/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ impl SessionRunnerState {

pub fn unload(&mut self) -> Result<()> {
#[cfg(feature = "tracing")]
tracing::info!("Unloading session");
tracing::trace!("Unloading session");
match core::mem::take(self) {
Self::Loaded(sr) => {
let net = sr.unload()?;
Expand All @@ -142,7 +142,7 @@ impl SessionRunnerState {

pub fn load(&mut self, config: &ScheduleConfig) -> Result<()> {
#[cfg(feature = "tracing")]
tracing::info!("Loading session");
tracing::trace!("Loading session");
match core::mem::take(self) {
Self::Loaded(sr) => {
*self = Self::Loaded(sr);
Expand Down

0 comments on commit a3c20e0

Please sign in to comment.