1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-12-22 17:10:10 +00:00

Print full error if writing config fails

This commit is contained in:
Harvey Tindall 2020-10-20 21:16:46 +01:00
parent 82d07e423c
commit 2f9965bcda
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2

View File

@ -67,11 +67,6 @@ type appContext struct {
} }
func (app *appContext) loadHTML(router *gin.Engine) { func (app *appContext) loadHTML(router *gin.Engine) {
// router.LoadHTMLGlob(filepath.Join(app.local_path, "templates", "*"))
// if customHTML := app.config.Section("files").Key("html_templates").MustString(""); customHTML != "" {
// app.info.Printf("Loading custom templates from \"%s\"", customHTML)
// router.LoadHTMLGlob(filepath.Join(customHTML, "*"))
// }
customPath := app.config.Section("files").Key("html_templates").MustString("") customPath := app.config.Section("files").Key("html_templates").MustString("")
templatePath := filepath.Join(app.local_path, "templates") templatePath := filepath.Join(app.local_path, "templates")
htmlFiles, err := ioutil.ReadDir(templatePath) htmlFiles, err := ioutil.ReadDir(templatePath)
@ -252,7 +247,8 @@ func start(asDaemon, firstCall bool) {
var nConfig *os.File var nConfig *os.File
nConfig, err := os.Create(app.config_path) nConfig, err := os.Create(app.config_path)
if err != nil { if err != nil {
app.err.Fatalf("Couldn't open config file for writing: \"%s\"", app.config_path) app.err.Printf("Couldn't open config file for writing: \"%s\"", app.config_path)
app.err.Fatalf("Error: %s", err)
} }
defer nConfig.Close() defer nConfig.Close()
_, err = io.Copy(nConfig, dConfig) _, err = io.Copy(nConfig, dConfig)