From 279d67cdbb413ab0363e61ec4ced922aeeabfcb1 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Fri, 7 Oct 2022 10:26:01 +0200 Subject: Improve error message on filure to execute a remote action ... to emphasize that this is the extensional action identifier, not the intensional one. --- src/buildtool/execution_api/remote/bazel/bazel_network.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3