From f241d5429f58fe62ec352b9334f458634f718e61 Mon Sep 17 00:00:00 2001 From: Michael Berlin Date: Mon, 23 Apr 2018 12:46:22 -0700 Subject: [PATCH] vt/log: Do not use an alias when importing the "glog" package. The alias was "glog" as well and therefore redundant. Signed-off-by: Michael Berlin --- go/vt/log/log.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/go/vt/log/log.go b/go/vt/log/log.go index 2a6b9a3b3a8..4f06ec38cc6 100644 --- a/go/vt/log/log.go +++ b/go/vt/log/log.go @@ -5,9 +5,7 @@ package log -import ( - glog "github.com/golang/glog" -) +import "github.com/golang/glog" // Level is used with V() to test log verbosity. type Level = glog.Level