fix: typo when logging fatal error

Small fix to format the error instead of printing `v`
This commit is contained in:
Zak 2022-10-10 08:49:11 -07:00 committed by GitHub
parent 11e0514d33
commit 3c6bff3a3d

View file

@ -47,7 +47,7 @@ func main() {
}
if err := c.Web.StartServer(&srv); err != http.ErrServerClosed {
c.Web.Logger.Fatalf("shutting down the server: v", err)
c.Web.Logger.Fatalf("shutting down the server: %v", err)
}
}()