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

Unified Diff: chromeos/dbus/bluetooth_device_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_agent_service_provider.cc ('k') | chromeos/dbus/bluetooth_input_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/bluetooth_device_client.cc
diff --git a/chromeos/dbus/bluetooth_device_client.cc b/chromeos/dbus/bluetooth_device_client.cc
index df237e81089b70723818a07633ca4fe5215ac72f..00a0f2e1418ec5bd4028c508ccec86551aaa60f9 100644
--- a/chromeos/dbus/bluetooth_device_client.cc
+++ b/chromeos/dbus/bluetooth_device_client.cc
@@ -57,7 +57,7 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
BluetoothAdapterClient* adapter_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothDeviceClientImpl";
+ VLOG(1) << "Creating BluetoothDeviceClientImpl";
DCHECK(adapter_client);
adapter_client->AddObserver(this);
@@ -288,7 +288,7 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
dbus::Signal* signal) {
DCHECK(signal);
- DVLOG(1) << object_path.value() << ": Disconnect requested.";
+ VLOG(1) << object_path.value() << ": Disconnect requested.";
FOR_EACH_OBSERVER(BluetoothDeviceClient::Observer, observers_,
DisconnectRequested(object_path));
}
@@ -317,8 +317,8 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
return;
}
- DVLOG(1) << object_path.value() << ": Node created: "
- << node_path.value();
+ VLOG(1) << object_path.value() << ": Node created: "
+ << node_path.value();
FOR_EACH_OBSERVER(BluetoothDeviceClient::Observer, observers_,
NodeCreated(object_path, node_path));
}
@@ -345,8 +345,8 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
return;
}
- DVLOG(1) << object_path.value() << ": Node removed: "
- << node_path.value();
+ VLOG(1) << object_path.value() << ": Node removed: "
+ << node_path.value();
FOR_EACH_OBSERVER(BluetoothDeviceClient::Observer, observers_,
NodeRemoved(object_path, node_path));
}
« no previous file with comments | « chromeos/dbus/bluetooth_agent_service_provider.cc ('k') | chromeos/dbus/bluetooth_input_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698