diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-04 12:13:58 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-04 15:18:45 +0200 |
commit | 65b29dfc610d9393337c20e30f5b96e35dffebd0 (patch) | |
tree | 2e52063cf1d3097e8cce40427f806bf8a308f61c /src/buildtool/execution_api/local/local_api.hpp | |
parent | 2e7c555a4f30e92b405139a7325e47bb268a4e31 (diff) | |
download | justbuild-65b29dfc610d9393337c20e30f5b96e35dffebd0.tar.gz |
CAS: demote log messages of to debug
As those functions indicate success, it is up to the caller to
decide if the error was fatal or not. Reporting an error nevertheless
might result in error messages on successful operaitons, which is
confusing for the user.
Diffstat (limited to 'src/buildtool/execution_api/local/local_api.hpp')
-rw-r--r-- | src/buildtool/execution_api/local/local_api.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/local/local_api.hpp b/src/buildtool/execution_api/local/local_api.hpp index 05fbeeda..7135efa7 100644 --- a/src/buildtool/execution_api/local/local_api.hpp +++ b/src/buildtool/execution_api/local/local_api.hpp @@ -110,7 +110,7 @@ class LocalApi final : public IExecutionApi { storage_->CAS().DumpToStream(info, out, raw_tree); std::fclose(out); if (not success) { - Logger::Log(LogLevel::Error, + Logger::Log(LogLevel::Debug, "dumping {} {} to file descriptor {} failed.", IsTreeObject(info.type) ? "tree" : "blob", info.ToString(), |