From eeca1b554aeb6c5b0311a8d130a2a9225fb41ebd Mon Sep 17 00:00:00 2001 From: maddalax Date: Mon, 23 Sep 2024 15:35:13 -0500 Subject: [PATCH] more logging --- cli/htmgo/tasks/downloadtemplate/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/htmgo/tasks/downloadtemplate/main.go b/cli/htmgo/tasks/downloadtemplate/main.go index a5311a5..de231ad 100644 --- a/cli/htmgo/tasks/downloadtemplate/main.go +++ b/cli/htmgo/tasks/downloadtemplate/main.go @@ -49,6 +49,10 @@ func DownloadTemplate(outPath string) { return } + slog.Debug("provided out path", slog.String("outPath", outPath)) + slog.Debug("new module name", slog.String("newModuleName", newModuleName)) + slog.Debug("cwd", slog.String("cwd", cwd)) + newDir := filepath.Join(cwd, outPath) slog.Debug("Copying template files to", slog.String("dir", newDir))