Chore: set log output to stdout

This commit is contained in:
Dreamacro 2019-06-26 20:30:57 +08:00
parent aa3516ca24
commit 2417cfda12

View file

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