2022-12-02 11:26:52 +00:00
|
|
|
package netlink
|
|
|
|
|
|
2022-12-14 11:50:36 +00:00
|
|
|
import "github.com/qdm12/log"
|
|
|
|
|
|
2022-12-02 11:26:52 +00:00
|
|
|
type DebugLogger interface {
|
|
|
|
|
Debugf(format string, args ...any)
|
2022-12-14 11:50:36 +00:00
|
|
|
Patch(options ...log.Option)
|
2022-12-02 11:26:52 +00:00
|
|
|
}
|