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 12a177a215
commit 152e2e1037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)
}
}()