mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-02-07 12:30:48 +00:00
10 lines
197 B
Go
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)
|
|
}
|