From 252964b113df82ea2f74bfcd5190213880544c34 Mon Sep 17 00:00:00 2001 From: Vibhav Pant Date: Fri, 1 Sep 2023 20:02:40 +0530 Subject: [PATCH] ConnectToProfile: log about the connection attempt. --- .../platform/implementation/linux/bluetooth_classic_device.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/platform/implementation/linux/bluetooth_classic_device.cc b/internal/platform/implementation/linux/bluetooth_classic_device.cc index d1cc4425..05f0b2c8 100644 --- a/internal/platform/implementation/linux/bluetooth_classic_device.cc +++ b/internal/platform/implementation/linux/bluetooth_classic_device.cc @@ -109,6 +109,8 @@ void BluetoothDevice::onConnectProfileReply(const sdbus::Error *error) { } bool BluetoothDevice::ConnectToProfile(absl::string_view service_uuid) { + NEARBY_LOGS(VERBOSE) << __func__ << ": " << getObjectPath() + << ": Attempting to connect to profile " << service_uuid; try { ConnectProfile(std::string(service_uuid)); return true;