We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5492e34 commit 3f98763Copy full SHA for 3f98763
cli/src/main/kotlin/com/bazel_diff/bazel/BazelQueryService.kt
@@ -65,7 +65,6 @@ class BazelQueryService(
65
outputFile.deleteOnExit()
66
67
queryFile.writeText(query)
68
- logger.i { "Executing Query: $query" }
69
70
val cmd: MutableList<String> = ArrayList<String>().apply {
71
add(bazelPath.toString())
@@ -128,6 +127,8 @@ class BazelQueryService(
128
127
add(queryFile.toString())
129
}
130
+ logger.i { "Executing Query: $query" }
131
+ logger.i { "Command: ${cmd.toTypedArray().joinToString()}" }
132
val result = runBlocking {
133
process(
134
*cmd.toTypedArray(),
0 commit comments