Skip to content

Commit

Permalink
use standard logger by default
Browse files Browse the repository at this point in the history
  • Loading branch information
imjasonh committed Feb 9, 2022
1 parent 01cd742 commit f4010ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ecr-login/ecr.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ var notImplemented = errors.New("not implemented")

type ECRHelper struct {
clientFactory api.ClientFactory
logger logrus.Logger
logger *logrus.Logger
}

func NewECRHelper(cf api.ClientFactory) ECRHelper {
return ECRHelper{
clientFactory: cf,
logger: logrus.StandardLogger(),
}
}

Expand Down

0 comments on commit f4010ec

Please sign in to comment.