From eaab4ea1fff73191848d245c45fda56349cae5ac Mon Sep 17 00:00:00 2001 From: David Castillo Date: Tue, 10 May 2022 12:04:36 -0500 Subject: [PATCH] k8s/configurator: remove unneeded log stmnt --- src/go/k8s/cmd/configurator/main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/go/k8s/cmd/configurator/main.go b/src/go/k8s/cmd/configurator/main.go index 75d7ee1ee2fc..502720f7db03 100644 --- a/src/go/k8s/cmd/configurator/main.go +++ b/src/go/k8s/cmd/configurator/main.go @@ -142,8 +142,6 @@ func main() { log.Fatalf("%s", fmt.Errorf("unable to marshal the configuration: %w", err)) } - log.Printf("Config: %s", string(cfgBytes)) - if err := os.WriteFile(c.configDestination, cfgBytes, 0o600); err != nil { log.Fatalf("%s", fmt.Errorf("unable to write the destination configuration file: %w", err)) }