🔧 默认定时打印运行报告
This commit is contained in:
parent
7d7e51e8a6
commit
58de20eb86
4
main.go
4
main.go
|
@ -51,7 +51,6 @@ func init() {
|
||||||
confData := flag.String("data", "", "path of data dir")
|
confData := flag.String("data", "", "path of data dir")
|
||||||
confServer := flag.String("server", "", "this will overwrite Wide.Server if specified")
|
confServer := flag.String("server", "", "this will overwrite Wide.Server if specified")
|
||||||
confLogLevel := flag.String("log_level", "", "this will overwrite Wide.LogLevel if specified")
|
confLogLevel := flag.String("log_level", "", "this will overwrite Wide.LogLevel if specified")
|
||||||
confStat := flag.Bool("stat", false, "whether report statistics periodically")
|
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
@ -72,10 +71,7 @@ func init() {
|
||||||
conf.FixedTimeCheckEnv()
|
conf.FixedTimeCheckEnv()
|
||||||
session.FixedTimeSave()
|
session.FixedTimeSave()
|
||||||
session.FixedTimeRelease()
|
session.FixedTimeRelease()
|
||||||
|
|
||||||
if *confStat {
|
|
||||||
session.FixedTimeReport()
|
session.FixedTimeReport()
|
||||||
}
|
|
||||||
|
|
||||||
logger.Debug("host ["+runtime.Version()+", "+runtime.GOOS+"_"+runtime.GOARCH+"], cross-compilation ", util.Go.GetCrossPlatforms())
|
logger.Debug("host ["+runtime.Version()+", "+runtime.GOOS+"_"+runtime.GOARCH+"], cross-compilation ", util.Go.GetCrossPlatforms())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue