github.com/navikt/knorten@v0.0.0-20240419132333-1333f46ed8b6/pkg/logger/logger.go (about)

     1  package logger
     2  
     3  import "github.com/sirupsen/logrus"
     4  
     5  type Logger interface {
     6  	Errorf(string, ...any)
     7  	Error(string ...any)
     8  	Infof(string, ...any)
     9  	Info(string ...any)
    10  
    11  	WithError(error) *logrus.Entry
    12  }