diff options
Diffstat (limited to 'third_party/nix/src/libexpr/parser.cc')
-rw-r--r-- | third_party/nix/src/libexpr/parser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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; |