当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
FW000.go 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
shi.zeyuan 提交于 2020-03-21 18:56 . 1.xxx
package main
import (
"github.com/astaxie/beego"
"github.com/astaxie/beego/logs"
"tesou.io/platform/foot-parent/foot-core/common/routers"
)
func init() {
router := &routers.FootRouter{}
router.Hello()
}
func main() {
beeRun()
}
func beeRun() {
beego.LoadAppConfig("ini", "conf/app.conf")
logs.SetLogger(logs.AdapterConsole, `{"level":1,"color":true}`)
//logs.SetLogger(logs.AdapterFile,`{"filename":"foot-web.log","level":7,"maxlines":0,"maxsize":0,"daily":true,"maxdays":10,"color":true}`)
//输出文件名和行号
logs.EnableFuncCallDepth(true)
//异步输出日志
//logs.Async(1e3)
//启动
beego.Run()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化