Skip to content
Snippets Groups Projects
Commit e8eddb39 authored by kr328's avatar kr328
Browse files

Chore: remove unused logger

parent 634c2589
No related branches found
No related tags found
No related merge requests found
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...)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment