From 2ad19740fc71e00b911c4eae21f63baf33b10a2f Mon Sep 17 00:00:00 2001 From: lmika Date: Tue, 16 Jun 2026 12:40:10 +0000 Subject: [PATCH] Dumped file content --- services.go | 1 + 1 file changed, 1 insertion(+) diff --git a/services.go b/services.go index 3a55d65..56abaa8 100644 --- a/services.go +++ b/services.go @@ -116,6 +116,7 @@ func runCmdExpectingOutput(cmd ...string) (string, error) { func writeFile(path string, content string, mode os.FileMode) error { fullPath := os.ExpandEnv(path) log.Printf(" .. [file] %v (%v bytes)", fullPath, len(content)) + log.Printf(" .. [file] %v", content) return os.WriteFile(fullPath, []byte(content), mode) }