This commit is contained in:
fatedier 2017-05-17 16:02:31 +08:00
parent 2883d70ea9
commit a5f06489cb
4 changed files with 3 additions and 2 deletions

View File

@ -228,6 +228,7 @@ func (pxy *UdpProxy) InWorkConn(conn frpNet.Conn) {
sendCh <- &msg.Ping{}
}); errRet != nil {
pxy.Trace("heartbeat goroutine for udp work connection closed")
break
}
}
}

View File

@ -23,7 +23,7 @@ import (
var Log *logs.BeeLogger
func init() {
Log = logs.NewLogger(100)
Log = logs.NewLogger(200)
Log.EnableFuncCallDepth(true)
Log.SetLogFuncCallDepth(Log.GetLogFuncCallDepth() + 1)
}
@ -43,7 +43,7 @@ func SetLogFile(logWay string, logFile string, maxdays int64) {
}
}
// value: error, warning, info, debug
// value: error, warning, info, debug, trace
func SetLogLevel(logLevel string) {
level := 4 // warning
switch logLevel {