Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
piano1029 authored May 29, 2024
1 parent 665e77d commit 6d78ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/corebluetooth/internal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ impl CoreBluetoothInternal {
async fn wait_for_message(&mut self) {
select! {
delegate_msg = self.delegate_receiver.select_next_some() => {
println!("Received delegate message {:#?}", delegate_msg)
println!("Received delegate message {:#?}", delegate_msg);
match delegate_msg {
// TODO DidUpdateState does not imply that the adapter is
// on, just that it updated state.
Expand Down Expand Up @@ -1081,7 +1081,7 @@ impl CoreBluetoothInternal {
}
adapter_msg = self.message_receiver.select_next_some() => {
trace!("Adapter message!");
println!("Received adapter message {:#?}", adapter_msg)
println!("Received adapter message {:#?}", adapter_msg);
match adapter_msg {
CoreBluetoothMessage::StartScanning{filter} => self.start_discovery(filter),
CoreBluetoothMessage::StopScanning => self.stop_discovery(),
Expand Down

0 comments on commit 6d78ad3

Please sign in to comment.