Update docs

This commit is contained in:
ErickSkrauch
2020-01-05 20:19:41 +03:00
parent a4a9201034
commit 9946eae73b
6 changed files with 103 additions and 12 deletions

View File

@@ -97,7 +97,7 @@ type Skinsystem struct {
}
func (ctx *Skinsystem) Run() error {
ctx.Logger.Info(fmt.Sprintf("Starting, HTTP on: %s\n", ctx.ListenSpec))
ctx.Logger.Info(fmt.Sprintf("Starting the app, HTTP on: %s\n", ctx.ListenSpec))
listener, err := net.Listen("tcp", ctx.ListenSpec)
if err != nil {

View File

@@ -26,7 +26,7 @@ type UUIDsWorker struct {
}
func (ctx *UUIDsWorker) Run() error {
ctx.Logger.Info(fmt.Sprintf("Starting, HTTP on: %s\n", ctx.ListenSpec))
ctx.Logger.Info(fmt.Sprintf("Starting the worker, HTTP on: %s\n", ctx.ListenSpec))
listener, err := net.Listen("tcp", ctx.ListenSpec)
if err != nil {