diff options
Diffstat (limited to 'chromeos/network/network_configuration_handler.cc')
-rw-r--r-- | chromeos/network/network_configuration_handler.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chromeos/network/network_configuration_handler.cc b/chromeos/network/network_configuration_handler.cc index 3aa9960..e6bc8db 100644 --- a/chromeos/network/network_configuration_handler.cc +++ b/chromeos/network/network_configuration_handler.cc @@ -69,7 +69,7 @@ void LogConfigProperties(const std::string& desc, std::string v = "******"; if (!shill_property_util::IsPassphraseKey(iter.key())) base::JSONWriter::Write(&iter.value(), &v); - NET_LOG(DEBUG) << desc << ": " << path + "." + iter.key() + "=" + v; + NET_LOG(USER) << desc << ": " << path + "." + iter.key() + "=" + v; } } @@ -202,7 +202,7 @@ void NetworkConfigurationHandler::GetShillProperties( const std::string& service_path, const network_handler::DictionaryResultCallback& callback, const network_handler::ErrorCallback& error_callback) { - NET_LOG(USER) << "GetProperties: " << service_path; + NET_LOG(USER) << "GetShillProperties: " << service_path; DBusThreadManager::Get()->GetShillServiceClient()->GetProperties( dbus::ObjectPath(service_path), base::Bind(&NetworkConfigurationHandler::GetPropertiesCallback, @@ -220,7 +220,7 @@ void NetworkConfigurationHandler::SetShillProperties( callback.Run(); return; } - NET_LOG(USER) << "SetProperties: " << service_path; + NET_LOG(USER) << "SetShillProperties: " << service_path; scoped_ptr<base::DictionaryValue> properties_to_set( shill_properties.DeepCopy()); @@ -264,7 +264,7 @@ void NetworkConfigurationHandler::ClearShillProperties( callback.Run(); return; } - NET_LOG(USER) << "ClearProperties: " << service_path; + NET_LOG(USER) << "ClearShillProperties: " << service_path; for (std::vector<std::string>::const_iterator iter = names.begin(); iter != names.end(); ++iter) { NET_LOG(DEBUG) << "ClearProperty: " << service_path << "." << *iter; @@ -300,7 +300,7 @@ void NetworkConfigurationHandler::CreateShillConfiguration( scoped_ptr<base::DictionaryValue> properties_to_set( shill_properties.DeepCopy()); - NET_LOG(USER) << "CreateConfiguration: " << type << ": " << network_id; + NET_LOG(USER) << "CreateShillConfiguration: " << type << ": " << network_id; std::string profile_path; properties_to_set->GetStringWithoutPathExpansion(shill::kProfileProperty, |