From e1cbec3864e88217015a061a37fe3037b0793581 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Sun, 8 Dec 2024 03:17:20 +0530 Subject: [PATCH] - coredata verbosity enabled temporarily --- AltStore/AppDelegate.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AltStore/AppDelegate.swift b/AltStore/AppDelegate.swift index 7a08e54f..91faaa9b 100644 --- a/AltStore/AppDelegate.swift +++ b/AltStore/AppDelegate.swift @@ -43,10 +43,14 @@ final class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + UserDefaults.standard.setValue(true, forKey: "com.apple.CoreData.MigrationDebug") + UserDefaults.standard.setValue(true, forKey: "com.apple.CoreData.SQLDebug") + // Register default settings before doing anything else. UserDefaults.registerDefaults() - + DatabaseManager.shared.start { (error) in if let error = error