Merge pull request #15 from hbd/patch-1

fix: typo when logging fatal error
This commit is contained in:
Mike Stefanello 2022-10-10 13:41:46 -04:00 committed by GitHub
commit d85159c4f0
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)
}
}()