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

Commit e5fd4162 authored by Myles Watson's avatar Myles Watson Committed by Gerrit Code Review
Browse files

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

parents fca66d35 55cff39e
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);
}