Chromium Code Reviews| Index: chrome/browser/policy/network_configuration_updater.cc |
| =================================================================== |
| --- chrome/browser/policy/network_configuration_updater.cc (revision 114479) |
| +++ chrome/browser/policy/network_configuration_updater.cc (working copy) |
| @@ -56,8 +56,10 @@ |
| if (*cached_value != new_network_config) { |
| *cached_value = new_network_config; |
| - if (!network_library_->LoadOncNetworks(new_network_config, "")) |
| - LOG(WARNING) << "Network library failed to load ONC configuration."; |
| + std::string error; |
| + if (!network_library_->LoadOncNetworks(new_network_config, "", &error)) |
|
Mattias Nissler (ping if slow)
2011/12/14 22:45:12
you need curlies here.
Charlie Lee
2011/12/14 22:52:02
Done.
|
| + LOG(WARNING) << "Network library failed to load ONC configuration:" |
| + << error; |
| } |
| } |