mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Move mostly harmless messages to debug level
This commit is contained in:
parent
9d80521e09
commit
dbf71c0dff
2 changed files with 2 additions and 2 deletions
|
@ -475,7 +475,7 @@ impl SpircTask {
|
||||||
},
|
},
|
||||||
cmd = async { commands?.recv().await }, if commands.is_some() => if let Some(cmd) = cmd {
|
cmd = async { commands?.recv().await }, if commands.is_some() => if let Some(cmd) = cmd {
|
||||||
if let Err(e) = self.handle_command(cmd) {
|
if let Err(e) = self.handle_command(cmd) {
|
||||||
warn!("could not dispatch command: {}", e);
|
debug!("could not dispatch command: {}", e);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
event = async { player_events?.recv().await }, if player_events.is_some() => if let Some(event) = event {
|
event = async { player_events?.recv().await }, if player_events.is_some() => if let Some(event) = event {
|
||||||
|
|
|
@ -478,7 +478,7 @@ where
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Err(e) = session.dispatch(cmd, data) {
|
if let Err(e) = session.dispatch(cmd, data) {
|
||||||
error!("could not dispatch command: {}", e);
|
debug!("could not dispatch command: {}", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue