From 28a644e38c2d5e145e2efebf1d2d14e8f7384d22 Mon Sep 17 00:00:00 2001 From: opa334 Date: Sun, 30 Oct 2022 00:46:44 +0200 Subject: [PATCH] remove some leftover logs --- TrollStore/TSSceneDelegate.m | 6 ------ 1 file changed, 6 deletions(-) diff --git a/TrollStore/TSSceneDelegate.m b/TrollStore/TSSceneDelegate.m index ebf6a26..8f3b4c1 100644 --- a/TrollStore/TSSceneDelegate.m +++ b/TrollStore/TSSceneDelegate.m @@ -10,13 +10,10 @@ { for(UIOpenURLContext* context in URLContexts) { - NSLog(@"openURLContexts %@", context.URL); NSURL* url = context.URL; if(url) { - NSLog(@"ts_test url: %@", url); - NSLog(@"ts_test url.scheme: %@", url.scheme); if([url isFileURL]) { [url startAccessingSecurityScopedResource]; @@ -57,7 +54,6 @@ for(NSURLQueryItem* queryItem in components.queryItems) { - NSLog(@"ts_test queryItem %@ = %@", queryItem.name, queryItem.value); if([queryItem.name isEqualToString:@"url"]) { URLStringToInstall = queryItem.value; @@ -82,7 +78,6 @@ // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). - NSLog(@"scene:%@ willConnectToSession:%@ options:%@", scene, session, connectionOptions); UIWindowScene* windowScene = (UIWindowScene*)scene; _window = [[UIWindow alloc] initWithWindowScene:windowScene]; _rootViewController = [[TSRootViewController alloc] init]; @@ -130,7 +125,6 @@ - (void)scene:(UIScene *)scene openURLContexts:(NSSet *)URLContexts { - NSLog(@"scene:%@ openURLContexts:%@", scene, URLContexts); [self handleURLContexts:URLContexts scene:(UIWindowScene*)scene]; }