Skip to content

Commit d04bb34

Browse files
committed
Ignore codeium errors
1 parent 0eec691 commit d04bb34

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Core/Sources/CodeiumService/CodeiumAuthService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public final class CodeiumAuthService {
55
public init() {}
66
let codeiumKeyKey = "codeiumKey"
77
let keychain: Keychain = {
8-
let info = Bundle.main.infoDictionary
8+
let info = Bundle.main.infoDictionary
99
return Keychain(
1010
service: info?["BUNDLE_IDENTIFIER_BASE"] as! String,
1111
accessGroup: "\(info?["APP_ID_PREFIX"] as! String)\(info?["BUNDLE_IDENTIFIER_BASE"] as! String).Shared"

Core/Sources/CodeiumService/CodeiumLanguageServer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ extension CodeiumLanguageServer: CodeiumLSP {
140140
} else {
141141
do {
142142
let error = try JSONDecoder().decode(CodeiumResponseError.self, from: data)
143-
throw error
143+
Logger.codeium.error(error.message)
144144
} catch {
145145
Logger.codeium.error(error.localizedDescription)
146146
throw error

0 commit comments

Comments
 (0)