Skip to content

Commit

Permalink
chore: remove debug tracing logs
Browse files Browse the repository at this point in the history
Signed-off-by: Lachezar Lechev <[email protected]>
  • Loading branch information
elpiel committed Dec 12, 2023
1 parent b1a2151 commit 2fd8f9b
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions src/models/player.rs
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,6 @@ impl<E: Env + 'static> UpdateWithCtx<E> for Player {
Err(err) => Loadable::Err(err),
};

tracing::info!("New skip_gaps: {:#?}", skip_gaps_next);

eq_update(
&mut self.skip_gaps,
Some((skip_gaps_request.to_owned(), skip_gaps_next)),
Expand Down Expand Up @@ -1161,24 +1159,10 @@ fn skip_gaps_update<E: Env + 'static>(
Effects::none().unchanged()
}
}
(debug_1, debug_2, debug_3) => {
tracing::info!("{:#?} {:#?} {:#?}", debug_1, debug_2, debug_3);
Effects::none().unchanged()
}
_ => Effects::none().unchanged(),
}
}
(debug_1, debug_2, debug_3, debug_4, debug_5) => {
tracing::info!(
"{:#?} {:#?} {:#?} {:#?} {:#?}",
debug_1,
debug_2,
debug_3,
debug_4,
debug_5
);

Effects::none().unchanged()
}
_ => Effects::none().unchanged(),
};

skip_gaps_request_effects
Expand Down

0 comments on commit 2fd8f9b

Please sign in to comment.