diff --git a/cmd/main.go b/cmd/main.go index 6836cee..baed4f9 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -126,6 +126,7 @@ func Serve(ctx *cli.Context) error { if enableHTTPServer { go func() { + log.Info().Timestamp().Msg("Start listening on :80") err := httpServer.ListenAndServe("[::]:80") if err != nil { log.Panic().Err(err).Msg("Couldn't start HTTP fastServer") @@ -134,6 +135,7 @@ func Serve(ctx *cli.Context) error { } // Start the web fastServer + log.Info().Timestamp().Msgf("Start listening on %s", listener.Addr()) err = fastServer.Serve(listener) if err != nil { log.Panic().Err(err).Msg("Couldn't start fastServer")