We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 995b476 commit 607d956Copy full SHA for 607d956
Sources/CodexBar/UsageStore.swift
@@ -1191,9 +1191,11 @@ extension UsageStore {
1191
guard let claudeDebugConfiguration else {
1192
return "Claude debug log configuration unavailable"
1193
}
1194
- return await Self.debugClaudeLog(
1195
- browserDetection: browserDetection,
1196
- configuration: claudeDebugConfiguration)
+ return await claudeDebugExecutionContext.apply {
+ await Self.debugClaudeLog(
+ browserDetection: browserDetection,
1197
+ configuration: claudeDebugConfiguration)
1198
+ }
1199
case .zai:
1200
let resolution = ProviderTokenResolver.zaiResolution()
1201
let hasAny = resolution != nil
0 commit comments