Commit de21a3348e1e9df42b6ac73d73e649e15510873c
1 parent
28522615
Exists in
master
提交
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
src/HttpServer/main/main.go
| ... | ... | @@ -57,6 +57,7 @@ func main() { |
| 57 | 57 | return |
| 58 | 58 | }*/ |
| 59 | 59 | |
| 60 | + logger.Info("before LoadJsonConf") | |
| 60 | 61 | err = jsonconf.LoadJsonConf() |
| 61 | 62 | if err != nil { |
| 62 | 63 | logger.Error("err load jsonconfl err=%v", err) |
| ... | ... | @@ -65,7 +66,7 @@ func main() { |
| 65 | 66 | |
| 66 | 67 | //測試 |
| 67 | 68 | logic.Test() |
| 68 | - //go logic.StartHttpServe() | |
| 69 | + go logic.StartHttpServe() | |
| 69 | 70 | //go logic.StartHttpTicker() |
| 70 | 71 | //time.Sleep(time.Duration(2) * time.Second) |
| 71 | 72 | //go logic.Testsendhttp() | ... | ... |