Move mostly harmless messages to debug level

This commit is contained in:
Roderick van Domburg 2022-08-25 20:49:40 +02:00
parent 9d80521e09
commit dbf71c0dff
No known key found for this signature in database
GPG key ID: FE2585E713F9F30A
2 changed files with 2 additions and 2 deletions

View file

@ -475,7 +475,7 @@ impl SpircTask {
},
cmd = async { commands?.recv().await }, if commands.is_some() => if let Some(cmd) = 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 {

View file

@ -478,7 +478,7 @@ where
};
if let Err(e) = session.dispatch(cmd, data) {
error!("could not dispatch command: {}", e);
debug!("could not dispatch command: {}", e);
}
}
}