diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp b/src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp index d58d6d06..b5c0d1d0 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp @@ -20,7 +20,8 @@ void LogExecutionStatus(gsl::not_null<Logger const*> const& logger, // (and the server does not support a queue), the action could not // be started. The client should retry. logger->Emit(LogLevel::Error, - "Execution could not be started. Retry later."); + fmt::format("Execution could not be started.\n{}", + s.DebugString())); break; default: // fallback to default status logging |