From ffaf0891daeb677841d3243d4cbb389e0d8579e1 Mon Sep 17 00:00:00 2001 From: Paul Dix Date: Fri, 11 Apr 2014 12:08:46 -0400 Subject: [PATCH] Change log output for buffer size on query to debug. Too noisy on Info. --- src/cluster/shard.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cluster/shard.go b/src/cluster/shard.go index bea2ae161f..d57fe60443 100644 --- a/src/cluster/shard.go +++ b/src/cluster/shard.go @@ -355,7 +355,7 @@ func (self *ShardData) QueryResponseBufferSize(querySpec *parser.QuerySpec, batc if groupByTime == nil { // If the group by time is nil, we shouldn't have to use a buffer since the shards should be queried sequentially. // However, set this to something high just to be safe. - log.Info("BUFFER SIZE: 1000") + log.Debug("BUFFER SIZE: 1000") return 1000 } @@ -377,7 +377,7 @@ func (self *ShardData) QueryResponseBufferSize(querySpec *parser.QuerySpec, batc // each response can have many points, so having a buffer of the ticks * 100 should be safe, but we'll see. tickCount = tickCount * 100 } - log.Info("BUFFER SIZE: ", tickCount) + log.Debug("BUFFER SIZE: ", tickCount) return tickCount }