Chore: set log output to stdout

This commit is contained in:
gVisor bot 2019-06-26 20:30:57 +08:00
parent 21cf6cd128
commit d516009673

View File

@ -2,6 +2,7 @@ package log
import (
"fmt"
"os"
"github.com/Dreamacro/clash/common/observable"
@ -15,6 +16,7 @@ var (
)
func init() {
log.SetOutput(os.Stdout)
log.SetLevel(log.DebugLevel)
}