Skip to content

Commit a3c20e0

Browse files
committed
feat: change tracing::info to tracing::trace
1 parent 99cadc8 commit a3c20e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mnn-sync/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ impl SessionRunnerState {
125125

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

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

0 commit comments

Comments
 (0)