summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/remote/bazel
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2022-10-07 10:38:39 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2022-10-07 11:08:35 +0200
commit33b0db8254ee68c5ecb4c4362908c63bfdb0972c (patch)
tree1ed2857c55441a0d6e3857c829834fba10e3c594 /src/buildtool/execution_api/remote/bazel
parent279d67cdbb413ab0363e61ec4ced922aeeabfcb1 (diff)
downloadjustbuild-33b0db8254ee68c5ecb4c4362908c63bfdb0972c.tar.gz
Increase log level for grpc-related failures to warning
... so that any infra structure problem on the remote execution is reported by default.
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel')
-rw-r--r--src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp2
1 files changed, 1 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 b5c0d1d0..963a836a 100644
--- a/src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp
+++ b/src/buildtool/execution_api/remote/bazel/bazel_execution_client.cpp
@@ -25,7 +25,7 @@ void LogExecutionStatus(gsl::not_null<Logger const*> const& logger,
break;
default:
// fallback to default status logging
- LogStatus(logger, LogLevel::Debug, s);
+ LogStatus(logger, LogLevel::Warning, s);
break;
}
}