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

Commit fbea9d63 authored by Chris Manton's avatar Chris Manton
Browse files

Remove unnecessary function logging

Bug: 146086425
Test: bluetooth_gd_test
Change-Id: I467c6da8c2e798f8df9b5005bcf90883fd2ba242
parent d4770583
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ struct ConnectionInterfaceManager {

  void ConnectionOpened(ConnectionOpenCallback on_open, hci::Address address, l2cap::Psm psm,
                        ConnectionInterfaceDescriptor cid) {
    LOG_DEBUG("%s address:%s psm:%hd cid:%hd", __func__, address.ToString().c_str(), psm, cid);
    LOG_DEBUG("address:%s psm:%hd cid:%hd", address.ToString().c_str(), psm, cid);
    handler_->Post(common::BindOnce(&ConnectionInterfaceManager::GeneralCallback, common::Unretained(this), on_open,
                                    address, psm, cid));
    // TODO(cmanton) queue this pending connection address/psm tuple up for deletion
@@ -182,7 +182,7 @@ struct ConnectionInterfaceManager {
  }

  void ConnectionFailed(hci::Address address, l2cap::Psm psm) {
    LOG_DEBUG("%s Connection Failed", __func__);
    LOG_DEBUG("Connection Failed");
    // TODO(cmanton) queue this pending connection address/psm tuple up for deletion
    // There may be multiple, so only remove one
  }