Fix: Log setup finish to give user a clue the bot is ready

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2021-08-23 00:56:06 +02:00
parent ab2e77a9b5
commit b47bbdfd14
Signed by: luzifer
GPG Key ID: 0066F03ED215AD7D

View File

@ -127,5 +127,7 @@ func main() {
h = httpHelpers.GzipHandler(h)
h = httpHelpers.NewHTTPLogHandler(h)
log.Info("Bot setup done, bot is now running")
http.ListenAndServe(cfg.Listen, h)
}