Skip to content

Commit

Permalink
misc(player): downgrade state changed message to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaDve committed Aug 14, 2024
1 parent 24b606d commit 4a98b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/player.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ impl Player {
};

let old_state = imp.state.get();
tracing::debug!("State changed from `{:?}` -> `{:?}`", old_state, new_state);
tracing::trace!("State changed from `{:?}` -> `{:?}`", old_state, new_state);

imp.state.set(new_state);

Expand Down

0 comments on commit 4a98b53

Please sign in to comment.