diff --git a/Sora/Tracking Services/AniList/Mutations/AniListPushUpdates.swift b/Sora/Tracking Services/AniList/Mutations/AniListPushUpdates.swift index ade8898..f2590bc 100644 --- a/Sora/Tracking Services/AniList/Mutations/AniListPushUpdates.swift +++ b/Sora/Tracking Services/AniList/Mutations/AniListPushUpdates.swift @@ -89,8 +89,7 @@ class AniListMutation { if let data = data { do { let responseJSON = try JSONSerialization.jsonObject(with: data, options: []) - print("Successfully updated anime progress") - print(responseJSON) + Logger.shared.log("Successfully updated anime progress", type: "Debug") completion(.success(())) } catch { completion(.failure(error)) diff --git a/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift b/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift index fae44fd..acdbc23 100644 --- a/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift +++ b/Sora/Utils/MediaPlayer/CustomPlayer/CustomPlayer.swift @@ -1209,7 +1209,7 @@ class CustomMediaPlayerViewController: UIViewController { guard let self = self, let data = data, let content = String(data: data, encoding: .utf8) else { - print("Failed to load m3u8 file") + Logger.shared.log("Failed to load m3u8 file") DispatchQueue.main.async { self?.qualities = [] completion()