summaryrefslogtreecommitdiff
path: root/src/buildtool/main/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/main/main.cpp')
-rw-r--r--src/buildtool/main/main.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/buildtool/main/main.cpp b/src/buildtool/main/main.cpp
index 50b8f476..3f5bfd76 100644
--- a/src/buildtool/main/main.cpp
+++ b/src/buildtool/main/main.cpp
@@ -118,9 +118,10 @@ void SetupExecutionConfig(EndpointArguments const& eargs,
if (eargs.remote_execution_dispatch_file) {
if (not RemoteConfig::SetRemoteExecutionDispatch(
*eargs.remote_execution_dispatch_file)) {
- Logger::Log(LogLevel::Error,
- "Setting remote execution dispatch based on file '{}'",
- eargs.remote_execution_dispatch_file->string());
+ Logger::Log(
+ LogLevel::Error,
+ "Setting remote execution dispatch based on file '{}' failed.",
+ eargs.remote_execution_dispatch_file->string());
std::exit(kExitFailure);
}
}