From 6e5f39603b81e2e4bcae235560d12d648a7c8e30 Mon Sep 17 00:00:00 2001 From: Himanshu Sardana Date: Mon, 16 Mar 2026 18:49:08 +0000 Subject: fix: logging qol --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index d12fd01..8f215ec 100644 --- a/main.go +++ b/main.go @@ -19,11 +19,11 @@ func main() { for _, f := range files { filePath := filepath.Join(path, f.Name()) if !f.IsDir() && strings.HasSuffix(f.Name(), ".md") { - fmt.Printf("Found content: %s", f.Name()) + fmt.Printf("Found content: %s\n", filePath) htmlContent := convertToHtml(filePath) htmlPath := strings.Replace(filePath, ".md", ".html", 1) os.WriteFile(htmlPath, htmlContent, 0o777) - fmt.Printf("Wrote file: %s", htmlPath) + fmt.Printf("Wrote file: %s\n", htmlPath) } } } -- cgit v1.3.1