remove template loading println

This commit is contained in:
f0x 2021-09-13 14:17:52 +02:00
commit f481e6002d

View file

@ -39,7 +39,6 @@ func loadTemplates(cfg *config.Config, engine *gin.Engine) error {
tmPath := filepath.Join(cwd, fmt.Sprintf("%s*", cfg.TemplateConfig.BaseDir)) tmPath := filepath.Join(cwd, fmt.Sprintf("%s*", cfg.TemplateConfig.BaseDir))
println("loading html templates")
engine.LoadHTMLGlob(tmPath) engine.LoadHTMLGlob(tmPath)
return nil return nil
} }