mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-10 06:57:26 +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)
|
|
}
|