Skip to content

Commit adf3a75

Browse files
committed
Fix private logs
1 parent 2909a82 commit adf3a75

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Sources/SourceKitBazelBSP/RequestHandlers/SKOptions/BazelTargetAquerier.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ final class BazelTargetAquerier {
7171

7272
let parsedOutput = try BazelProtobufBindings.parseActionGraph(data: output)
7373

74-
logger.debug("actionGraphContainer count \(parsedOutput.actions.count, privacy: .private)")
74+
logger.debug("ActionGraphContainer parsed \(parsedOutput.actions.count) actions")
7575

7676
queryCache[cmd] = parsedOutput
7777

Sources/SourceKitBazelBSP/RequestHandlers/SKOptions/CompilerArgumentsProcessor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ enum CompilerArgumentsProcessor {
3434
initializedConfig: InitializedServerConfig
3535
) -> [String]? {
3636
guard let target = aqueryOutput.targets.first(where: { $0.label == bazelTarget }) else {
37-
logger.debug("Target: \(bazelTarget, privacy: .private) not found.")
37+
logger.debug("Target: \(bazelTarget) not found.")
3838
return nil
3939
}
4040
guard let action = aqueryOutput.actions.first(where: { $0.targetID == target.id }) else {
41-
logger.debug("Action for \(bazelTarget, privacy: .private) not found.")
41+
logger.debug("Action for \(bazelTarget) not found.")
4242
return nil
4343
}
4444

0 commit comments

Comments
 (0)