コード例 #1
0
ファイル: initAccount.go プロジェクト: hujunlong/Server4Go
func (this *Config) setLog() {
	Log = logs.NewLogger(this.account_log_max) //日志
	Log.EnableFuncCallDepth(true)
	err := Log.SetLogger("file", `{"filename":"log/account.log"}`)
	if err != nil {
		fmt.Println(err)
	}
}
コード例 #2
0
ファイル: global.go プロジェクト: linminglu/Server4Go
func init() {
	Log = logs.NewLogger(10000) //日志
	Log.EnableFuncCallDepth(true)
	Log.SetLogger("file", `{"filename":"game.log"}`)
}