aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth/Source/FIRAuthAPNSTokenManager.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/FIRAuthAPNSTokenManager.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/FIRAuthAPNSTokenManager.m')
-rw-r--r--Firebase/Auth/Source/FIRAuthAPNSTokenManager.m28
1 files changed, 14 insertions, 14 deletions
diff --git a/Firebase/Auth/Source/FIRAuthAPNSTokenManager.m b/Firebase/Auth/Source/FIRAuthAPNSTokenManager.m
index 9609d86..575bee9 100644
--- a/Firebase/Auth/Source/FIRAuthAPNSTokenManager.m
+++ b/Firebase/Auth/Source/FIRAuthAPNSTokenManager.m
@@ -132,8 +132,8 @@ static const NSTimeInterval kLegacyRegistrationTimeout = 30;
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
if ([envClass performSelector:isSimulatorSelector]) {
#pragma clang diagnostic pop
- FIRLogWarning(kFIRLoggerAuth, @"I-AUT000006",
- @"Assuming prod APNs token type on simulator.");
+ FIRLogInfo(kFIRLoggerAuth, @"I-AUT000006",
+ @"Assuming prod APNs token type on simulator.");
return defaultAppTypeProd;
}
}
@@ -166,8 +166,8 @@ static const NSTimeInterval kLegacyRegistrationTimeout = 30;
NSMutableData *profileData = [NSMutableData dataWithContentsOfFile:path options:0 error:&error];
if (!profileData.length || error) {
- FIRLogWarning(kFIRLoggerAuth, @"I-AUT000007",
- @"Error while reading embedded mobileprovision %@", error);
+ FIRLogInfo(kFIRLoggerAuth, @"I-AUT000007",
+ @"Error while reading embedded mobileprovision %@", error);
return defaultAppTypeProd;
}
@@ -188,8 +188,8 @@ static const NSTimeInterval kLegacyRegistrationTimeout = 30;
freeWhenDone:NO];
if (error || !embeddedProfile.length) {
- FIRLogWarning(kFIRLoggerAuth, @"I-AUT000008",
- @"Error while reading embedded mobileprovision %@", error);
+ FIRLogInfo(kFIRLoggerAuth, @"I-AUT000008",
+ @"Error while reading embedded mobileprovision %@", error);
return defaultAppTypeProd;
}
@@ -207,8 +207,8 @@ static const NSTimeInterval kLegacyRegistrationTimeout = 30;
NSData *data = [plistContents dataUsingEncoding:NSUTF8StringEncoding];
if (!data.length) {
- FIRLogWarning(kFIRLoggerAuth, @"I-AUT000009",
- @"Couldn't read plist fetched from embedded mobileprovision");
+ FIRLogInfo(kFIRLoggerAuth, @"I-AUT000009",
+ @"Couldn't read plist fetched from embedded mobileprovision");
return defaultAppTypeProd;
}
@@ -218,9 +218,9 @@ static const NSTimeInterval kLegacyRegistrationTimeout = 30;
format:nil
error:&plistMapError];
if (plistMapError || ![plistData isKindOfClass:[NSDictionary class]]) {
- FIRLogWarning(kFIRLoggerAuth, @"I-AUT000010",
- @"Error while converting assumed plist to dict %@",
- plistMapError.localizedDescription);
+ FIRLogInfo(kFIRLoggerAuth, @"I-AUT000010",
+ @"Error while converting assumed plist to dict %@",
+ plistMapError.localizedDescription);
return defaultAppTypeProd;
}
NSDictionary *plistMap = (NSDictionary *)plistData;
@@ -237,9 +237,9 @@ static const NSTimeInterval kLegacyRegistrationTimeout = 30;
// No aps-environment in the profile.
if (!apsEnvironment.length) {
- FIRLogWarning(kFIRLoggerAuth, @"I-AUT000013",
- @"No aps-environment set. If testing on a device APNS is not "
- @"correctly configured. Please recheck your provisioning profiles.");
+ FIRLogInfo(kFIRLoggerAuth, @"I-AUT000013",
+ @"No aps-environment set. If testing on a device APNS is not "
+ @"correctly configured. Please recheck your provisioning profiles.");
return defaultAppTypeProd;
}