fix(netlink): change logger level

This commit is contained in:
Quentin McGaw
2022-12-14 11:50:36 +00:00
parent c0a301611d
commit a4cf17f81e
3 changed files with 11 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
package netlink
import "github.com/qdm12/log"
type DebugLogger interface {
Debugf(format string, args ...any)
Patch(options ...log.Option)
}