Index: chromeos/dbus/bluetooth_media_transport_client.cc |
diff --git a/chromeos/dbus/bluetooth_media_transport_client.cc b/chromeos/dbus/bluetooth_media_transport_client.cc |
index 7672ea38aeb385dc4841e708168247b147434272..2be8a5639efa46f7f140eb62af71d1f91a0db2ad 100644 |
--- a/chromeos/dbus/bluetooth_media_transport_client.cc |
+++ b/chromeos/dbus/bluetooth_media_transport_client.cc |
@@ -129,6 +129,8 @@ class BluetoothMediaTransportClientImpl |
void Acquire(const dbus::ObjectPath& object_path, |
const AcquireCallback& callback, |
const ErrorCallback& error_callback) override { |
+ VLOG(1) << "Acquire - transport: " << object_path.value(); |
+ |
DCHECK(object_manager_); |
dbus::MethodCall method_call(kBluetoothMediaTransportInterface, kAcquire); |
@@ -150,6 +152,8 @@ class BluetoothMediaTransportClientImpl |
void TryAcquire(const dbus::ObjectPath& object_path, |
const AcquireCallback& callback, |
const ErrorCallback& error_callback) override { |
+ VLOG(1) << "TryAcquire - transport: " << object_path.value(); |
+ |
DCHECK(object_manager_); |
dbus::MethodCall method_call(kBluetoothMediaTransportInterface, |
@@ -172,6 +176,8 @@ class BluetoothMediaTransportClientImpl |
void Release(const dbus::ObjectPath& object_path, |
const base::Closure& callback, |
const ErrorCallback& error_callback) override { |
+ VLOG(1) << "Release - transport: " << object_path.value(); |
+ |
DCHECK(object_manager_); |
dbus::MethodCall method_call(kBluetoothMediaTransportInterface, kRelease); |