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

Unified Diff: chromeos/dbus/bluetooth_manager_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
« no previous file with comments | « chromeos/dbus/bluetooth_input_client.cc ('k') | chromeos/dbus/bluetooth_node_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/bluetooth_manager_client.cc
diff --git a/chromeos/dbus/bluetooth_manager_client.cc b/chromeos/dbus/bluetooth_manager_client.cc
index bd09f4d93b1b1222e2d8acc455e23e20339509b4..b8b312677af1479f051e16366d94b4180b45d5be 100644
--- a/chromeos/dbus/bluetooth_manager_client.cc
+++ b/chromeos/dbus/bluetooth_manager_client.cc
@@ -37,8 +37,6 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
explicit BluetoothManagerClientImpl(dbus::Bus* bus)
: object_proxy_(NULL),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothManagerClientImpl";
-
// Create the object proxy.
DCHECK(bus);
object_proxy_ = bus->GetObjectProxy(
@@ -153,7 +151,7 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
return;
}
- DVLOG(1) << "Adapter added: " << object_path.value();
+ VLOG(1) << "Adapter added: " << object_path.value();
FOR_EACH_OBSERVER(Observer, observers_, AdapterAdded(object_path));
}
@@ -175,7 +173,7 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
return;
}
- DVLOG(1) << "Adapter removed: " << object_path.value();
+ VLOG(1) << "Adapter removed: " << object_path.value();
FOR_EACH_OBSERVER(Observer, observers_, AdapterRemoved(object_path));
}
@@ -197,7 +195,7 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
return;
}
- DVLOG(1) << "Default adapter changed: " << object_path.value();
+ VLOG(1) << "Default adapter changed: " << object_path.value();
FOR_EACH_OBSERVER(Observer, observers_, DefaultAdapterChanged(object_path));
}
« no previous file with comments | « chromeos/dbus/bluetooth_input_client.cc ('k') | chromeos/dbus/bluetooth_node_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698