added warning color

This commit is contained in:
2024-04-14 16:25:24 +02:00
parent d308a2cfc8
commit 89da5678dc
3 changed files with 6 additions and 4 deletions

View File

@@ -48,6 +48,6 @@ func HostRoutes(botID string) {
}
logrus.Info("Starting server for html routes on :443...")
if err := server.ListenAndServeTLS("./web/cert.pem", "./web/key.pem"); err != nil {
logrus.Errorf("Error starting server: %v\n", err)
logrus.Warnf("Error starting server: %v\n", err)
}
}