From e8eddb3917417cbba4ef740f422ba9ef373d8e7b Mon Sep 17 00:00:00 2001 From: kr328 Date: Sat, 22 May 2021 01:30:53 +0800 Subject: [PATCH] Chore: remove unused logger --- core/src/main/golang/tun/log.go | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 core/src/main/golang/tun/log.go diff --git a/core/src/main/golang/tun/log.go b/core/src/main/golang/tun/log.go deleted file mode 100644 index cd636d98..00000000 --- a/core/src/main/golang/tun/log.go +++ /dev/null @@ -1,21 +0,0 @@ -package tun - -import "github.com/Dreamacro/clash/log" - -type logger struct{} - -func (l *logger) D(format string, args ...interface{}) { - log.Debugln(format, args...) -} - -func (l *logger) I(format string, args ...interface{}) { - log.Infoln(format, args...) -} - -func (l *logger) W(format string, args ...interface{}) { - log.Warnln(format, args...) -} - -func (l *logger) E(format string, args ...interface{}) { - log.Errorln(format, args...) -}