From f481e6002d2911f866f93d00d1b7a4bce04c72a0 Mon Sep 17 00:00:00 2001 From: f0x Date: Mon, 13 Sep 2021 14:17:52 +0200 Subject: [PATCH] remove template loading println --- internal/router/template.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/router/template.go b/internal/router/template.go index 6dd0aba3a..2beee63c0 100644 --- a/internal/router/template.go +++ b/internal/router/template.go @@ -39,7 +39,6 @@ func loadTemplates(cfg *config.Config, engine *gin.Engine) error { tmPath := filepath.Join(cwd, fmt.Sprintf("%s*", cfg.TemplateConfig.BaseDir)) - println("loading html templates") engine.LoadHTMLGlob(tmPath) return nil }