mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
Disable gVisor log
This commit is contained in:
parent
6ed4a688f1
commit
f53aabff27
1 changed files with 16 additions and 0 deletions
16
gvisor_log.go
Normal file
16
gvisor_log.go
Normal 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{}) {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue