diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-01-08 14:33:34 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-01-09 11:35:44 +0100 |
commit | 9b20d414d24f4e6ee22f4a35bf2570f3d2ced1b7 (patch) | |
tree | b3e11e793230a6f5d5ef6c8ce21498167bf95657 /src | |
parent | 39360f3a654f43bc7fada435d6d42d4e6248f8a1 (diff) | |
download | justbuild-9b20d414d24f4e6ee22f4a35bf2570f3d2ced1b7.tar.gz |
just main: Fix log message
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/main/main.cpp | 7 |
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); } } |