Browse Source

fix(cli): fixes broken import

bergquist 9 years ago
parent
commit
3d7facf6ee
1 changed files with 1 additions and 2 deletions
  1. 1 2
      pkg/cmd/grafana-cli/main.go

+ 1 - 2
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
 	}