mirror of
https://github.com/cranci1/Sora.git
synced 2026-04-13 04:50:41 +00:00
removed prints
This commit is contained in:
parent
1a1ce973e8
commit
71f5f9fe25
2 changed files with 1 additions and 2 deletions
|
|
@ -88,7 +88,6 @@ class JSController: ObservableObject {
|
|||
return
|
||||
}
|
||||
|
||||
print(html)
|
||||
Logger.shared.log(html,type: "HTMLStrings")
|
||||
if let parseFunction = self.context.objectForKeyedSubscript("searchResults"),
|
||||
let results = parseFunction.call(withArguments: [html]).toArray() as? [[String: String]] {
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class LibraryManager: ObservableObject {
|
|||
|
||||
private func loadBookmarks() {
|
||||
guard let data = UserDefaults.standard.data(forKey: bookmarksKey) else {
|
||||
print("No bookmarks data found in UserDefaults.")
|
||||
Logger.shared.log("No bookmarks data found in UserDefaults.", type: "Error")
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue