From 2a2b41c7edb039a508eb92f06c3d5073fbc998c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zapletal?= Date: Tue, 6 Sep 2022 11:56:31 +0200 Subject: [PATCH] Remove "Clowder is not enabled" message Hello, in our app, we use the same configuration for the backend app as well as for many CLI tools and this message is just always there. I see no big value in having anything on standard output, we use logging (and cloudwatch) anyways. I'd appreciate a minor release with this so it goes away for good :-) Thanks a bunch, cheers! --- pkg/api/v1/config.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/api/v1/config.go b/pkg/api/v1/config.go index 6c5b7e1..90b9fa5 100644 --- a/pkg/api/v1/config.go +++ b/pkg/api/v1/config.go @@ -41,7 +41,6 @@ func IsClowderEnabled() bool { func init() { if !IsClowderEnabled() { - fmt.Println("Clowder is not enabled, skipping init...") return } loadedConfig, err := loadConfig(os.Getenv("ACG_CONFIG"))