Chromium Code Reviews| Index: chrome/browser/chromeos/cros/cros_network_functions.cc |
| diff --git a/chrome/browser/chromeos/cros/cros_network_functions.cc b/chrome/browser/chromeos/cros/cros_network_functions.cc |
| index bb5f8c2e944e2f010427cdd679597651197050a9..0068c4919a0768ecdf6fa3e1f55532d6a5fbf656 100644 |
| --- a/chrome/browser/chromeos/cros/cros_network_functions.cc |
| +++ b/chrome/browser/chromeos/cros/cros_network_functions.cc |
| @@ -1064,7 +1064,8 @@ bool CrosAddIPConfig(const std::string& device_path, IPConfigType type) { |
| DBusThreadManager::Get()->GetFlimflamDeviceClient()-> |
| CallAddIPConfigAndBlock(dbus::ObjectPath(device_path), type_str); |
| if (result.value().empty()) { |
| - LOG(WARNING) <<"Add IPConfig failed: "; |
| + LOG(ERROR) << "Add IPConfig failed for device path " << device_path |
| + << " and type " << type_str; |
|
satorux1
2012/05/22 00:43:07
<< should be vertically aligned.
Greg Spencer (Chromium)
2012/05/22 00:44:54
Done.
|
| return false; |
| } |
| return true; |