EdgexAgent/device-gps-go/vendor/github.com/spiffe/go-spiffe/v2/logger/logger.go
2025-07-10 20:30:06 +08:00

10 lines
270 B
Go

package logger
// Logger provides logging facilities to the library.
type Logger interface {
Debugf(format string, args ...interface{})
Infof(format string, args ...interface{})
Warnf(format string, args ...interface{})
Errorf(format string, args ...interface{})
}