ソースを参照

fix(cli): fixes broken import

bergquist 9 年 前
コミット
3d7facf6ee
1 ファイル変更1 行追加2 行削除
  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
 	}