Chromium Code Reviews| Index: remoting/client/ios/host_preferences.mm |
| diff --git a/remoting/client/ios/host_preferences.mm b/remoting/client/ios/host_preferences.mm |
| index f229ce25a9426dfa9f5b389092fd4d654527b2da..1377cb91b7fd4c3db490b643dc4c6be4e1874a05 100644 |
| --- a/remoting/client/ios/host_preferences.mm |
| +++ b/remoting/client/ios/host_preferences.mm |
| @@ -44,7 +44,9 @@ static NSString* const kHostPreferencesPairSecretKey = @"PairSecret"; |
| NSError* keychainError = |
| remoting::ios::WriteHostPreferencesToKeychain(writeData); |
| - DLOG_IF(ERROR, !keychainError) << "Could not write to keychain."; |
| + if (!keychainError) { |
|
sdefresne
2017/04/12 15:27:52
This is https://codereview.chromium.org/2817513004
nicholss
2017/04/12 15:35:32
I am working on removing this file from this cl :)
|
| + LOG(ERROR) << "Could not write to keychain."; |
| + } |
| } |
| + (HostPreferences*)hostForId:(NSString*)hostId { |