We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c4ceda commit 4be8234Copy full SHA for 4be8234
SupportCompanion/Views/Cards/AppCard.swift
@@ -125,7 +125,7 @@ struct PlistService {
125
// Ensure the file exists at the given path
126
guard FileManager.default.fileExists(atPath: path),
127
let plistData = FileManager.default.contents(atPath: path) else {
128
- print("Error: Could not read plist at path: \(path)")
+ Logger.shared.logError("Could not read plist at path: \(path)")
129
return nil
130
}
131
@@ -135,7 +135,7 @@ struct PlistService {
135
return plist[key]
136
137
} catch {
138
- print("Error: Failed to parse plist. \(error.localizedDescription)")
+ Logger.shared.logError("Error: Failed to parse plist. \(error.localizedDescription)")
139
140
141
0 commit comments