From 45ad98aaf58ffcec0b0695c3040712e3af97e477 Mon Sep 17 00:00:00 2001 From: Todd Gruben Date: Thu, 12 Mar 2015 16:33:02 +0000 Subject: [PATCH] cleaned up some logging --- index/brand.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index/brand.go b/index/brand.go index 0ac784909..b0af55c98 100644 --- a/index/brand.go +++ b/index/brand.go @@ -109,7 +109,7 @@ func (self *Brand) cache_it(bm IBitmap, bitmap_id uint64, category uint64) { if bm.Count() >= self.threshold_value { self.bitmap_cache[bitmap_id] = &Rank{&Pair{bitmap_id, bm.Count()}, bm, category} if len(self.bitmap_cache) > self.threshold_length { - log.Info("RANK: %d %d %d", len(self.bitmap_cache), self.threshold_length, self.threshold_value) + log.Info("RANK:", len(self.bitmap_cache), self.threshold_length, self.threshold_value) self.Rank() self.trim() }