From 7dfd69cdc5966ae454e35cd6e976686131bfda8d Mon Sep 17 00:00:00 2001 From: Mohammed Al Sahaf Date: Thu, 9 Apr 2020 00:31:51 +0300 Subject: chore: make the linter happier (#3245) * chore: make the linter happier * chore: remove reference to maligned linter in .golangci.yml --- logging.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'logging.go') diff --git a/logging.go b/logging.go index bd291ff..1017293 100644 --- a/logging.go +++ b/logging.go @@ -217,7 +217,7 @@ func (logging *Logging) Logger(mod Module) *zap.Logger { multiCore := zapcore.NewTee(cores...) - return zap.New(multiCore).Named(string(modID)) + return zap.New(multiCore).Named(modID) } // openWriter opens a writer using opener, and returns true if @@ -464,7 +464,7 @@ func (cl *CustomLog) buildCore() { } func (cl *CustomLog) matchesModule(moduleID string) bool { - return cl.loggerAllowed(string(moduleID), true) + return cl.loggerAllowed(moduleID, true) } // loggerAllowed returns true if name is allowed to emit -- cgit v1.2.3