From 17640fe6cf8e43914705eb01077f2e3a9a021a31 Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Sat, 25 Feb 2023 14:36:37 -0800 Subject: [PATCH] Cherry pick app ID logging fix from duplicate profiles PR --- AltStore/Managing Apps/AppManager.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index d85fa339..5bf39ed2 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -392,7 +392,8 @@ extension AppManager func fetchAppIDs(completionHandler: @escaping (Result<([AppID], NSManagedObjectContext), Error>) -> Void) { let authenticationOperation = self.authenticate(presentingViewController: nil) { (result) in - print("Authenticated for fetching App IDs with result:", result) + // result contains name, email, auth token, OTP and other possibly personal/account specific info. we don't want this logged + //print("Authenticated for fetching App IDs with result:", result) } let fetchAppIDsOperation = FetchAppIDsOperation(context: authenticationOperation.context)