mirror of
https://github.com/gotoeasy/glogcenter.git
synced 2025-09-15 12:58:34 +08:00
17 lines
320 B
Go
17 lines
320 B
Go
package main
|
|
|
|
import (
|
|
"glc/conf"
|
|
"glc/onstart"
|
|
"runtime"
|
|
|
|
"github.com/gotoeasy/glang/cmn"
|
|
)
|
|
|
|
func main() {
|
|
cmn.SetGlcClient(cmn.NewGlcClient(&cmn.GlcOptions{Enable: false, LogLevel: "INFO"})) // 控制台INFO日志级别输出
|
|
|
|
runtime.GOMAXPROCS(conf.GetGoMaxProcess()) // 使用最大CPU数量
|
|
onstart.Run()
|
|
}
|