diff --git a/main.go b/main.go index a5bfde4..90fddb9 100644 --- a/main.go +++ b/main.go @@ -1106,8 +1106,8 @@ func main() { iterateThroughSubdomains(globalOutbox) // Start the servers + slog.Info("Starting servers") for port, router := range portRouters { - slog.Info("Starting server on port " + port) if !router.HTTPSEnabled() { go func() { // Start the HTTP server @@ -1134,6 +1134,8 @@ func main() { } } + slog.Info("Servers started. Fulgens is now running. Press Ctrl+C to stop the server.") + // Wait for a signal to stop the server signalChannel := make(chan os.Signal, 1) signal.Notify(signalChannel, os.Interrupt, syscall.SIGTERM)