sing-tun/gvisor_log.go
2022-07-17 11:07:18 +08:00

16 lines
260 B
Go

package tun
import (
"time"
gLog "gvisor.dev/gvisor/pkg/log"
)
func init() {
gLog.SetTarget((*nopEmitter)(nil))
}
type nopEmitter struct{}
func (n *nopEmitter) Emit(depth int, level gLog.Level, timestamp time.Time, format string, v ...interface{}) {
}