Update slog output for server start (#27)

Fixing f string error.
This commit is contained in:
Kevin Lewin 2024-10-21 10:17:18 -04:00 committed by GitHub
parent 7a038e6af1
commit cea6b1cff2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -213,7 +213,7 @@ func (app *App) start() {
}
port := ":3000"
slog.Info(fmt.Sprintf("Server started at localhost:%s", port))
slog.Info(fmt.Sprintf("Server started at localhost%s", port))
err := http.ListenAndServe(port, app.Router)
if err != nil {