App builds in xcodeproj (todo widget)

This commit is contained in:
Joe Mattiello
2023-03-02 00:40:11 -05:00
parent 4c9c5b1a56
commit f49fa24743
49 changed files with 498 additions and 295 deletions

View File

@@ -14,6 +14,7 @@ import RoxasUIKit
import SideKit
import Nuke
import QuickLook
import os.log
final class ErrorLogViewController: UITableViewController {
private lazy var dataSource = self.makeDataSource()
@@ -248,7 +249,7 @@ extension ErrorLogViewController {
try context.save()
completion(true)
} catch {
print("[ALTLog] Failed to delete LoggedError \(loggedError.objectID):", error)
os_log("[ALTLog] Failed to delete LoggedError %@: %@", type: .error , loggedError.objectID, error.localizedDescription)
completion(false)
}
}