fix(build): removed logging call that caused wrong dependency to be used

This commit is contained in:
Torkel Ödegaard 2016-06-16 08:55:36 +02:00
parent 1ae24b366f
commit 23e0240410

View File

@ -8,7 +8,6 @@ import (
"net/url"
"time"
"github.com/Unknwon/log"
"github.com/grafana/grafana/pkg/middleware"
"github.com/grafana/grafana/pkg/setting"
"github.com/grafana/grafana/pkg/util"
@ -33,7 +32,6 @@ func ReverseProxyGnetReq(proxyPath string) *httputil.ReverseProxy {
req.Host = url.Host
req.URL.Path = util.JoinUrlFragments(url.Path+"/api", proxyPath)
log.Info("Url: %v", req.URL.Path)
// clear cookie headers
req.Header.Del("Cookie")