Disable gVisor log

This commit is contained in:
世界 2022-07-17 11:07:18 +08:00
parent 6ed4a688f1
commit f53aabff27
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

16
gvisor_log.go Normal file
View file

@ -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{}) {
}