We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99cadc8 commit a3c20e0Copy full SHA for a3c20e0
mnn-sync/src/lib.rs
@@ -125,7 +125,7 @@ impl SessionRunnerState {
125
126
pub fn unload(&mut self) -> Result<()> {
127
#[cfg(feature = "tracing")]
128
- tracing::info!("Unloading session");
+ tracing::trace!("Unloading session");
129
match core::mem::take(self) {
130
Self::Loaded(sr) => {
131
let net = sr.unload()?;
@@ -142,7 +142,7 @@ impl SessionRunnerState {
142
143
pub fn load(&mut self, config: &ScheduleConfig) -> Result<()> {
144
145
- tracing::info!("Loading session");
+ tracing::trace!("Loading session");
146
147
148
*self = Self::Loaded(sr);
0 commit comments