Files
velero/pkg/util/logging/log_setter.go
T
2017-11-28 10:58:12 -08:00

10 lines
197 B
Go

package logging
import "github.com/sirupsen/logrus"
// LogSetter is an interface for a type that allows a FieldLogger
// to be set on it.
type LogSetter interface {
SetLog(logrus.FieldLogger)
}