diff --git a/gvisor_log.go b/gvisor_log.go new file mode 100644 index 0000000..1f27c91 --- /dev/null +++ b/gvisor_log.go @@ -0,0 +1,16 @@ +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{}) { +}