summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/buildtool/execution_api/remote/bazel/bazel_network.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_network.cpp b/src/buildtool/execution_api/remote/bazel/bazel_network.cpp
index bdb4f3be..65364f95 100644
--- a/src/buildtool/execution_api/remote/bazel/bazel_network.cpp
+++ b/src/buildtool/execution_api/remote/bazel/bazel_network.cpp
@@ -178,8 +178,9 @@ auto BazelNetwork::ExecuteBazelActionSync(
if (response.state !=
BazelExecutionClient::ExecutionResponse::State::Finished or
not response.output) {
- Logger::Log(
- LogLevel::Error, "Failed to execute action {}.", action.hash());
+ Logger::Log(LogLevel::Error,
+ "Failed to execute action with execution id {}.",
+ action.hash());
return std::nullopt;
}