diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-11-09 14:14:57 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-12-01 13:43:36 +0100 |
commit | 59276244738ebec32ed0593ee4af615852ff564d (patch) | |
tree | 480d03d5a96dbb2416a58f9e403a804967246d07 | |
parent | e224c16d28be738b260d9d15d0503da3febf99de (diff) |
Lower verbosity for 'Failed to find a machine' message
-rw-r--r-- | src/build-remote/build-remote.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-remote/build-remote.cc b/src/build-remote/build-remote.cc index 9a0e9f08d..8348d8c91 100644 --- a/src/build-remote/build-remote.cc +++ b/src/build-remote/build-remote.cc @@ -201,7 +201,7 @@ static int main_build_remote(int argc, char * * argv) % concatStringsSep<StringSet>(", ", m.mandatoryFeatures); } - logErrorInfo(lvlInfo, { + logErrorInfo(canBuildLocally ? lvlChatty : lvlWarn, { .name = "Remote build", .description = "Failed to find a machine for remote build!", .hint = hint |