From 9b20d414d24f4e6ee22f4a35bf2570f3d2ced1b7 Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Mon, 8 Jan 2024 14:33:34 +0100 Subject: just main: Fix log message --- src/buildtool/main/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') 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); } } -- cgit v1.2.3