Update linter

This commit is contained in:
Ludovic Fernandez 2020-05-11 12:06:07 +02:00 committed by GitHub
parent f12c27aa7c
commit 328611c619
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
157 changed files with 489 additions and 508 deletions

View file

@ -5,7 +5,7 @@ import (
"github.com/sirupsen/logrus"
)
// jaegerLogger is an implementation of the Logger interface that delegates to traefik log
// jaegerLogger is an implementation of the Logger interface that delegates to traefik log.
type jaegerLogger struct {
logger logrus.FieldLogger
}
@ -20,7 +20,7 @@ func (l *jaegerLogger) Error(msg string) {
l.logger.Errorf("Tracing jaeger error: %s", msg)
}
// Infof logs a message at debug priority
// Infof logs a message at debug priority.
func (l *jaegerLogger) Infof(msg string, args ...interface{}) {
l.logger.Debugf(msg, args...)
}