Skip to content

Commit ddc081c

Browse files
committed
version 0.3.2
1 parent 8ea5270 commit ddc081c

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Sources/iOSSignIn/SignInManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ extension SignInManager: GenericSignInDelegate {
289289
self.signInCompleted(signIn: signIn, mode: .signIn, autoSignIn: autoSignIn)
290290
}
291291
else {
292-
logger.error("SignInManager.signInCompleted: ERROR: Could not get AccountMode")
292+
logger.debug("SignInManager.signInCompleted: ERROR: Could not get AccountMode")
293293
}
294294

295295
logger.info("Credentials: \(String(describing: self.currentSignIn?.credentials))")

Sources/iOSSignIn/SignInView/SignInController.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ extension SignInController: SignInManagerControlDelegate {
124124
// Transitional state. User has tapped sign in button -- they want to create an account or to sign into an existing account.
125125

126126
guard let accountMode = accountMode else {
127-
logger.error("signInStarted: ERROR: Could not get AccountMode")
127+
logger.debug("signInStarted: ERROR: Could not get AccountMode")
128128
return
129129
}
130130

@@ -147,7 +147,7 @@ extension SignInController: SignInManagerControlDelegate {
147147
let navBarTitle: String
148148

149149
guard let accountMode = accountMode else {
150-
logger.error("signInCancelled: ERROR: Could not get AccountMode")
150+
logger.debug("signInCancelled: ERROR: Could not get AccountMode")
151151
return
152152
}
153153

@@ -177,7 +177,7 @@ extension SignInController: SignInManagerControlDelegate {
177177
let navBarTitle: String
178178

179179
guard let accountMode = accountMode else {
180-
logger.error("SignInController.signInCompleted: ERROR: Could not get AccountMode")
180+
logger.debug("SignInController.signInCompleted: ERROR: Could not get AccountMode")
181181
return
182182
}
183183

VERSIONS.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
iOSSignIn
22

3+
Version 0.3.2 (3/19/21)
4+
* Removed unuseful error logging.
5+
36
Version 0.3.1 (3/5/21)
47
* Fix sign out issue.
58

0 commit comments

Comments
 (0)