File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Sources/SourceKitBazelBSP/RequestHandlers/SKOptions Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments