fix: ensure errors are logged

This commit is contained in:
Lea Anthony
2019-04-25 20:05:39 +10:00
parent a109e3078d
commit 13ad57d49f

10
app.go
View File

@@ -70,7 +70,11 @@ func (a *App) Run() error {
} }
a.logLevel = "error" a.logLevel = "error"
return a.start() err := a.start()
if err != nil {
a.log.Error(err.Error())
}
return err
} }
func (a *App) start() error { func (a *App) start() error {
@@ -114,9 +118,7 @@ func (a *App) start() error {
a.renderer.AddJSList(a.jsCache) a.renderer.AddJSList(a.jsCache)
// Run the renderer // Run the renderer
a.renderer.Run() return a.renderer.Run()
return nil
} }
// Bind allows the user to bind the given object // Bind allows the user to bind the given object