Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: chromeos/dbus/bluetooth_adapter_client.cc

Issue 12379062: Remove Debug restriction on Bluetooth log messages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again (base files missing?) Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/dbus/bluetooth_adapter_client.cc
diff --git a/chromeos/dbus/bluetooth_adapter_client.cc b/chromeos/dbus/bluetooth_adapter_client.cc
index b6fd15053e6b937a5c9a9b177cd500650e3cc1a4..354255de7312cc596caed3ea48073894a99cce7d 100644
--- a/chromeos/dbus/bluetooth_adapter_client.cc
+++ b/chromeos/dbus/bluetooth_adapter_client.cc
@@ -68,8 +68,6 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
BluetoothManagerClient* manager_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothAdapterClientImpl";
-
DCHECK(manager_client);
manager_client->AddObserver(this);
}
@@ -441,8 +439,8 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device created: "
- << device_path.value();
+ VLOG(1) << object_path.value() << ": Device created: "
+ << device_path.value();
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceCreated(object_path, device_path));
}
@@ -469,8 +467,8 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device removed: "
- << device_path.value();
+ VLOG(1) << object_path.value() << ": Device removed: "
+ << device_path.value();
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceRemoved(object_path, device_path));
}
@@ -509,7 +507,7 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device found: " << address;
+ VLOG(1) << object_path.value() << ": Device found: " << address;
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceFound(object_path, address, device_properties));
}
@@ -536,7 +534,7 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device disappeared: " << address;
+ VLOG(1) << object_path.value() << ": Device disappeared: " << address;
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceDisappeared(object_path, address));
}

Powered by Google App Engine
This is Rietveld 408576698