Chromium Code Reviews| Index: chromeos/components/tether/initializer.cc |
| diff --git a/chromeos/components/tether/initializer.cc b/chromeos/components/tether/initializer.cc |
| index 9b446e0ccdc938f1fa4cabac1e4761cb0158116b..838e87969cefd5ba50f8c41e832b492f6e86cc6b 100644 |
| --- a/chromeos/components/tether/initializer.cc |
| +++ b/chromeos/components/tether/initializer.cc |
| @@ -64,17 +64,16 @@ void Initializer::Init( |
| NetworkConnectionHandler* network_connection_handler) { |
| if (!device::BluetoothAdapterFactory::IsBluetoothSupported()) { |
| PA_LOG(WARNING) << "Bluetooth is not supported on this device; cannot " |
| - << "initialize tether feature."; |
| + << "initialize Tether feature."; |
| return; |
| } |
| if (instance_) { |
| - PA_LOG(WARNING) << "Tether initialization was triggered when the feature " |
| - << "had already been initialized; exiting initialization " |
| - << "early."; |
| + // The Tether feature has already been initialized. No need to do anything. |
| return; |
| } |
| + PA_LOG(INFO) << "Initializer Tether feature."; |
|
Ryan Hansberry
2017/06/26 23:55:08
Is this log needed? If so, the phrasing is awkward
Kyle Horimoto
2017/06/27 00:56:01
Fixed typo. Yes, I think this log is useful. There
|
| instance_ = |
| new Initializer(cryptauth_service, std::move(notification_presenter), |
| pref_service, token_service, network_state_handler, |