From 939dd9f8176266add4d88572203739fa74b14fa5 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 19 May 2020 01:24:50 +0100 Subject: refactor(3p/nix/libexpr): Replace logging.h with glog --- third_party/nix/src/libexpr/get-drvs.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'third_party/nix/src/libexpr/get-drvs.cc') diff --git a/third_party/nix/src/libexpr/get-drvs.cc b/third_party/nix/src/libexpr/get-drvs.cc index cdbcb7d76275..b25556b34c07 100644 --- a/third_party/nix/src/libexpr/get-drvs.cc +++ b/third_party/nix/src/libexpr/get-drvs.cc @@ -4,6 +4,7 @@ #include "derivations.hh" #include "eval-inline.hh" #include "util.hh" +#include namespace nix { @@ -301,7 +302,7 @@ static void getDerivations(EvalState& state, Value& vIn, bound to the attribute with the "lower" name should take precedence). */ for (auto& i : v.attrs->lexicographicOrder()) { - debug("evaluating attribute '%1%'", i->name); + DLOG(INFO) << "evaluating attribute '" << i->name << "'"; if (!std::regex_match(std::string(i->name), attrRegex)) continue; string pathPrefix2 = addToPath(pathPrefix, i->name); if (combineChannels) -- cgit 1.4.1