about summary refs log tree commit diff
path: root/third_party/nix/src/libstore/misc.cc
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-19T00·02+0100
committerVincent Ambo <tazjin@google.com>2020-05-19T00·04+0100
commit505b6b044b132b28e1501491bcfe6bd68ca1989e (patch)
tree1c1ed8a195f5c94050754316c842a3f8623c6cbe /third_party/nix/src/libstore/misc.cc
parentce99ba42df493bb521f47789fb8902d7693c5b9c (diff)
refactor(3p/nix/libstore): Replace logging.h with glog r/756
Diffstat (limited to 'third_party/nix/src/libstore/misc.cc')
-rw-r--r--third_party/nix/src/libstore/misc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/libstore/misc.cc b/third_party/nix/src/libstore/misc.cc
index d1c4dc1550..5139404597 100644
--- a/third_party/nix/src/libstore/misc.cc
+++ b/third_party/nix/src/libstore/misc.cc
@@ -1,3 +1,4 @@
+#include <glog/logging.h>
 #include "derivations.hh"
 #include "globals.hh"
 #include "local-store.hh"
@@ -99,8 +100,7 @@ void Store::queryMissing(const PathSet& targets, PathSet& willBuild_,
                          PathSet& willSubstitute_, PathSet& unknown_,
                          unsigned long long& downloadSize_,
                          unsigned long long& narSize_) {
-  Activity act(*logger, lvlDebug, actUnknown,
-               "querying info about missing paths");
+  LOG(INFO) << "querying info about missing paths";
 
   downloadSize_ = narSize_ = 0;