aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-05-07 17:43:08 +0200
committerGitHub <noreply@github.com>2021-05-07 17:43:08 +0200
commit66771f746e18a81692f94f358822091cc0040434 (patch)
tree849379d4b04bb6bd8e407c50799e7904a861169b /searchlib
parentba17eafcc199a5029dd571ad96f8a1962ed34c7b (diff)
Log as debug
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/common/bitvectorcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/common/bitvectorcache.cpp b/searchlib/src/vespa/searchlib/common/bitvectorcache.cpp
index 6b873d8a7c1..81f01de0c33 100644
--- a/searchlib/src/vespa/searchlib/common/bitvectorcache.cpp
+++ b/searchlib/src/vespa/searchlib/common/bitvectorcache.cpp
@@ -145,7 +145,7 @@ BitVectorCache::populate(Key2Index & newKeys, CondensedBitVector & chunk, const
accum += percentage;
m.chunkId(0);
m.chunkIndex(index);
- LOG(info, "Populating bitvector %2d with feature %" PRIu64 " and %ld bits set. Cost is %8f = %2.2f%%, accumulated cost is %2.2f%%",
+ LOG(debug, "Populating bitvector %2d with feature %" PRIu64 " and %ld bits set. Cost is %8f = %2.2f%%, accumulated cost is %2.2f%%",
index, e.first, m.bitCount(), m.cost(), percentage, accum);
assert(m.isCached());
assert(newKeys[e.first].isCached());