tech(influxdb): remove unused logging

This commit is contained in:
bergquist
2016-10-10 11:16:27 +02:00
parent f919d04e3c
commit 95b9f472d1
2 changed files with 0 additions and 10 deletions

View File

@@ -3,8 +3,6 @@ package tsdb
import (
"fmt"
"time"
"github.com/grafana/grafana/pkg/log"
)
var (
@@ -17,8 +15,6 @@ var (
func CalculateInterval(timerange *TimeRange) string {
interval := time.Duration((timerange.MustGetTo().UnixNano() - timerange.MustGetFrom().UnixNano()) / defaultRes)
log.Info2("res", "resinMs", time.Duration(interval).String())
if interval < minInterval {
return formatDuration(minInterval)
}