aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
diff options
context:
space:
mode:
authorGravatar Xiangtian Dai <xiangtian@google.com>2017-06-29 11:57:52 -0700
committerGravatar GitHub <noreply@github.com>2017-06-29 11:57:52 -0700
commitacb7a32afa4ef10915fd33005ac5e5830cf7dd6c (patch)
tree11b108db36c43fe9776c4b93cd86b4c8f717dae3 /Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
parent986199d5a300ff303a1af9ae1439bcf53f2cfff6 (diff)
Changes client-side logging level for some messages generated by Auth to be in line with product-wise standard. (#109)
Diffstat (limited to 'Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m')
-rw-r--r--Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m b/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
index 423b2b6..823403c 100644
--- a/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
+++ b/Firebase/Auth/Source/AuthProviders/Phone/FIRPhoneAuthProvider.m
@@ -198,9 +198,9 @@ typedef void (^FIRVerifyClientCallback)(FIRAuthAppCredential *_Nullable appCrede
timeout:timeout
callback:^(FIRAuthAppCredential *credential) {
if (!credential.secret) {
- FIRLogError(kFIRLoggerAuth, @"I-AUT000014",
- @"Failed to receive remote notification to verify app identity within "
- @"%.0f second(s)", timeout);
+ FIRLogWarning(kFIRLoggerAuth, @"I-AUT000014",
+ @"Failed to receive remote notification to verify app identity within "
+ @"%.0f second(s)", timeout);
}
completion(credential, nil);
}];