update
parent
a3c7754718
commit
fd06bc2510
5
main.go
5
main.go
|
@ -13,6 +13,11 @@ func main() {
|
||||||
flag.StringVar(&configPath, "c", "config.toml", "配置文件路径")
|
flag.StringVar(&configPath, "c", "config.toml", "配置文件路径")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
cfg := mylog.DefaultConfig
|
||||||
|
cfg.ConsoleWriter = nil
|
||||||
|
cfg.NeedLogFile = true
|
||||||
|
mylog.Init("debug", cfg)
|
||||||
|
|
||||||
myconf.Init(configPath, &app.ProxyMap)
|
myconf.Init(configPath, &app.ProxyMap)
|
||||||
defer mylog.Flush()
|
defer mylog.Flush()
|
||||||
app.Run()
|
app.Run()
|
||||||
|
|
Loading…
Reference in New Issue