Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 136f4c7d authored by Myles Watson's avatar Myles Watson Committed by Automerger Merge Worker
Browse files

Merge "RootCanal: Log commands being forwarded to the LM or LL rust module"...

Merge "RootCanal: Log commands being forwarded to the LM or LL rust module" into main am: e5fd4162

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2822885



Change-Id: Ib7a166c5833e35a728e1f144bbcc23b229c1e69f
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 8f7e8826 e5fd4162
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -97,10 +97,12 @@ DualModeController::DualModeController(ControllerProperties properties)
}

void DualModeController::ForwardToLm(CommandView command) {
  DEBUG(id_, "<< [LM] {}", bluetooth::hci::OpCodeText(command.GetOpCode()));
  link_layer_controller_.ForwardToLm(command);
}

void DualModeController::ForwardToLl(CommandView command) {
  DEBUG(id_, "<< [LL] {}", bluetooth::hci::OpCodeText(command.GetOpCode()));
  link_layer_controller_.ForwardToLl(command);
}