about summary refs log tree commit diff
path: root/third_party/nix/src/libstore/references.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/libstore/references.cc')
-rw-r--r--third_party/nix/src/libstore/references.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/nix/src/libstore/references.cc b/third_party/nix/src/libstore/references.cc
index df3ee73fde..5413bfb5cf 100644
--- a/third_party/nix/src/libstore/references.cc
+++ b/third_party/nix/src/libstore/references.cc
@@ -1,4 +1,5 @@
 #include "references.hh"
+#include <glog/logging.h>
 #include <cstdlib>
 #include <map>
 #include "archive.hh"
@@ -32,7 +33,7 @@ static void search(const unsigned char* s, size_t len, StringSet& hashes,
     if (!match) continue;
     string ref((const char*)s + i, refLength);
     if (hashes.find(ref) != hashes.end()) {
-      debug(format("found reference to '%1%' at offset '%2%'") % ref % i);
+      DLOG(INFO) << "found reference to '" << ref << "' at offset " << i;
       seen.insert(ref);
       hashes.erase(ref);
     }