Simplify logs

This commit is contained in:
skiffer-git
2022-12-14 15:22:06 +08:00
parent 7b57b924ee
commit a78e43bfe3
17 changed files with 17 additions and 18 deletions
+1 -1
View File
@@ -25,6 +25,6 @@ func main() {
address = config.Config.Api.ListenIP + ":" + strconv.Itoa(*ginPort)
}
address = config.Config.CmsApi.ListenIP + ":" + strconv.Itoa(*ginPort)
fmt.Println("start cms api server, address: ", address, "OpenIM version: ", constant.CurrentVersion, "\n")
fmt.Println("start cms api server, address: ", address, ", OpenIM version: ", constant.CurrentVersion, "\n")
router.Run(address)
}