summaryrefslogtreecommitdiffstats
path: root/chromeos
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
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')
-rw-r--r--chromeos/dbus/bluetooth_adapter_client.cc14
-rw-r--r--chromeos/dbus/bluetooth_agent_service_provider.cc4
-rw-r--r--chromeos/dbus/bluetooth_device_client.cc12
-rw-r--r--chromeos/dbus/bluetooth_input_client.cc2
-rw-r--r--chromeos/dbus/bluetooth_manager_client.cc8
-rw-r--r--chromeos/dbus/bluetooth_node_client.cc2
-rw-r--r--chromeos/dbus/introspectable_client.cc1
7 files changed, 17 insertions, 26 deletions
diff --git a/chromeos/dbus/bluetooth_adapter_client.cc b/chromeos/dbus/bluetooth_adapter_client.cc
index b6fd150..354255d 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));
}
diff --git a/chromeos/dbus/bluetooth_agent_service_provider.cc b/chromeos/dbus/bluetooth_agent_service_provider.cc
index 2b3811c..786935c 100644
--- a/chromeos/dbus/bluetooth_agent_service_provider.cc
+++ b/chromeos/dbus/bluetooth_agent_service_provider.cc
@@ -39,8 +39,8 @@ class BluetoothAgentServiceProviderImpl : public BluetoothAgentServiceProvider {
delegate_(delegate),
object_path_(object_path),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothAdapterClientImpl for "
- << object_path.value();
+ VLOG(1) << "Creating BluetoothAdapterClientImpl for "
+ << object_path.value();
exported_object_ = bus_->GetExportedObject(object_path_);
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));
}
diff --git a/chromeos/dbus/bluetooth_input_client.cc b/chromeos/dbus/bluetooth_input_client.cc
index 60b9f223..4c7863a 100644
--- a/chromeos/dbus/bluetooth_input_client.cc
+++ b/chromeos/dbus/bluetooth_input_client.cc
@@ -53,8 +53,6 @@ class BluetoothInputClientImpl: public BluetoothInputClient,
BluetoothAdapterClient* adapter_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothInputClientImpl";
-
DCHECK(adapter_client);
adapter_client->AddObserver(this);
}
diff --git a/chromeos/dbus/bluetooth_manager_client.cc b/chromeos/dbus/bluetooth_manager_client.cc
index bd09f4d..b8b3126 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));
}
diff --git a/chromeos/dbus/bluetooth_node_client.cc b/chromeos/dbus/bluetooth_node_client.cc
index 3b70ea1..b421e27 100644
--- a/chromeos/dbus/bluetooth_node_client.cc
+++ b/chromeos/dbus/bluetooth_node_client.cc
@@ -42,8 +42,6 @@ class BluetoothNodeClientImpl: public BluetoothNodeClient,
BluetoothDeviceClient* device_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothNodeClientImpl";
-
DCHECK(device_client);
device_client->AddObserver(this);
}
diff --git a/chromeos/dbus/introspectable_client.cc b/chromeos/dbus/introspectable_client.cc
index dc6639f..83b09a3 100644
--- a/chromeos/dbus/introspectable_client.cc
+++ b/chromeos/dbus/introspectable_client.cc
@@ -35,7 +35,6 @@ class IntrospectableClientImpl : public IntrospectableClient {
explicit IntrospectableClientImpl(dbus::Bus* bus)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating IntrospectableClientImpl";
}
virtual ~IntrospectableClientImpl() {