diff options
Diffstat (limited to 'third_party/nix/src/libexpr')
-rw-r--r-- | third_party/nix/src/libexpr/eval.cc | 4 | ||||
-rw-r--r-- | third_party/nix/src/libexpr/parser.cc | 4 | ||||
-rw-r--r-- | third_party/nix/src/libexpr/primops.cc | 2 | ||||
-rw-r--r-- | third_party/nix/src/libexpr/primops/fetchGit.cc | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/third_party/nix/src/libexpr/eval.cc b/third_party/nix/src/libexpr/eval.cc index e15741811738..f7b745a7b480 100644 --- a/third_party/nix/src/libexpr/eval.cc +++ b/third_party/nix/src/libexpr/eval.cc @@ -688,7 +688,7 @@ void EvalState::evalFile(const Path& path_, Value& v) { return; } - DLOG(INFO) << "evaluating file '" << path2 << "'"; + VLOG(2) << "evaluating file '" << path2 << "'"; Expr* e = nullptr; auto j = fileParseCache.find(path2); @@ -1541,7 +1541,7 @@ std::string EvalState::copyPathToStore(PathSet& context, const Path& path) { : store->addToStore(baseNameOf(path), checkSourcePath(path), true, htSHA256, defaultPathFilter, repair); srcToStore[path] = dstPath; - DLOG(INFO) << "copied source '" << path << "' -> '" << dstPath << "'"; + VLOG(2) << "copied source '" << path << "' -> '" << dstPath << "'"; } context.insert(dstPath); diff --git a/third_party/nix/src/libexpr/parser.cc b/third_party/nix/src/libexpr/parser.cc index 756fdfa12819..aea6cec7e445 100644 --- a/third_party/nix/src/libexpr/parser.cc +++ b/third_party/nix/src/libexpr/parser.cc @@ -322,8 +322,8 @@ std::pair<bool, std::string> EvalState::resolveSearchPathElem( } } - DLOG(INFO) << "resolved search path element '" << elem.second << "' to '" - << res.second << "'"; + VLOG(2) << "resolved search path element '" << elem.second << "' to '" + << res.second << "'"; searchPathResolved[elem.second] = res; return res; diff --git a/third_party/nix/src/libexpr/primops.cc b/third_party/nix/src/libexpr/primops.cc index 5278734dcb6c..0bac7793c7e1 100644 --- a/third_party/nix/src/libexpr/primops.cc +++ b/third_party/nix/src/libexpr/primops.cc @@ -745,7 +745,7 @@ static void prim_derivationStrict(EvalState& state, const Pos& pos, /* Write the resulting term into the Nix store directory. */ Path drvPath = writeDerivation(state.store, drv, drvName, state.repair); - DLOG(INFO) << "instantiated '" << drvName << "' -> '" << drvPath << "'"; + VLOG(2) << "instantiated '" << drvName << "' -> '" << drvPath << "'"; /* Optimisation, but required in read-only mode! because in that case we don't actually write store derivations, so we can't diff --git a/third_party/nix/src/libexpr/primops/fetchGit.cc b/third_party/nix/src/libexpr/primops/fetchGit.cc index 72b498d30b3e..da4d683401d7 100644 --- a/third_party/nix/src/libexpr/primops/fetchGit.cc +++ b/third_party/nix/src/libexpr/primops/fetchGit.cc @@ -160,7 +160,7 @@ GitInfo exportGit(ref<Store> store, const std::string& uri, : absl::StripTrailingAsciiWhitespace(readFile(localRefFile)); gitInfo.shortRev = std::string(gitInfo.rev, 0, 7); - DLOG(INFO) << "using revision " << gitInfo.rev << " of repo '" << uri << "'"; + VLOG(2) << "using revision " << gitInfo.rev << " of repo '" << uri << "'"; std::string storeLinkName = hashString(htSHA512, name + std::string("\0"s) + gitInfo.rev) |