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) }