summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/bluetooth_device_client.cc
diff options
context:
space:
mode:
authorkeybuk@chromium.org <keybuk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-08 23:00:10 +0000
committerkeybuk@chromium.org <keybuk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-08 23:00:10 +0000
commit7069f2cc46e97be0b39fba0a3ac59dd90e8fa99f (patch)
tree16f95b2808d1abe9ad9fab51669822b3c256c6a0 /chromeos/dbus/bluetooth_device_client.cc
parentffaf79ca738992bbf56553e632fdd006a713961b (diff)
downloadchromium_src-7069f2cc46e97be0b39fba0a3ac59dd90e8fa99f.zip
chromium_src-7069f2cc46e97be0b39fba0a3ac59dd90e8fa99f.tar.gz
chromium_src-7069f2cc46e97be0b39fba0a3ac59dd90e8fa99f.tar.bz2
Remove Debug restriction on Bluetooth log messages
We frequently need to access these in real builds after all. BUG=none TEST=chrome --vmodule=*bluetooth*=3 Review URL: https://chromiumcodereview.appspot.com/12379062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187064 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/bluetooth_device_client.cc')
-rw-r--r--chromeos/dbus/bluetooth_device_client.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromeos/dbus/bluetooth_device_client.cc b/chromeos/dbus/bluetooth_device_client.cc
index df237e8..00a0f2e 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));
}