From 3d7facf6ee8b6e7b517e3504552390daeda4e988 Mon Sep 17 00:00:00 2001 From: bergquist Date: Fri, 3 Jun 2016 13:40:48 +0200 Subject: [PATCH] fix(cli): fixes broken import --- pkg/cmd/grafana-cli/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/cmd/grafana-cli/main.go b/pkg/cmd/grafana-cli/main.go index 01a15f87fb3..131d9189022 100644 --- a/pkg/cmd/grafana-cli/main.go +++ b/pkg/cmd/grafana-cli/main.go @@ -8,7 +8,6 @@ import ( "github.com/codegangsta/cli" "github.com/grafana/grafana/pkg/cmd/grafana-cli/commands" "github.com/grafana/grafana/pkg/cmd/grafana-cli/logger" - "github.com/lunny/log" ) var version = "master" @@ -24,7 +23,7 @@ func getGrafanaPluginDir() string { pwd, err := os.Getwd() if err != nil { - log.Error("Could not get current path. using default") + logger.Error("Could not get current path. using default") return defaultNix }