hello: remove duplicate hclog import within driver.

This commit is contained in:
James Rasell 2020-11-23 11:48:28 +01:00
parent 7a8c6b44b3
commit fd4bc53317
No known key found for this signature in database
GPG key ID: AA7D460F5C8377AA

View file

@ -11,7 +11,6 @@ import (
"github.com/hashicorp/consul-template/signals" "github.com/hashicorp/consul-template/signals"
"github.com/hashicorp/go-hclog" "github.com/hashicorp/go-hclog"
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/drivers/shared/eventer" "github.com/hashicorp/nomad/drivers/shared/eventer"
"github.com/hashicorp/nomad/drivers/shared/executor" "github.com/hashicorp/nomad/drivers/shared/executor"
"github.com/hashicorp/nomad/plugins/base" "github.com/hashicorp/nomad/plugins/base"
@ -181,11 +180,11 @@ type HelloDriverPlugin struct {
signalShutdown context.CancelFunc signalShutdown context.CancelFunc
// logger will log to the Nomad agent // logger will log to the Nomad agent
logger log.Logger logger hclog.Logger
} }
// NewPlugin returns a new example driver plugin // NewPlugin returns a new example driver plugin
func NewPlugin(logger log.Logger) drivers.DriverPlugin { func NewPlugin(logger hclog.Logger) drivers.DriverPlugin {
ctx, cancel := context.WithCancel(context.Background()) ctx, cancel := context.WithCancel(context.Background())
logger = logger.Named(pluginName) logger = logger.Named(pluginName)