From 8fe93693db9716b6a01cff782a8369f89ec84d22 Mon Sep 17 00:00:00 2001 From: Merith-TK Date: Sat, 28 Dec 2024 16:47:04 +0000 Subject: [PATCH] remove unesscecary debug statement The Debug code specifically just wrote an adjacent config file with what the env-overrides resulted in --- internal/pkg/config/config.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/internal/pkg/config/config.go b/internal/pkg/config/config.go index 80508de..0a4b548 100644 --- a/internal/pkg/config/config.go +++ b/internal/pkg/config/config.go @@ -173,15 +173,5 @@ func LoadDefault(file string) (*Config, error) { // Load environment variables at the end to allow for overriding the default values. loadEnvVars(cfg) - // Write the state of the config, including default values, to a debug file. - debugFile := file + ".debug.yml" - content, err := yaml.Marshal(cfg) - if err != nil { - return nil, fmt.Errorf("marshal config to debug file %q: %w", debugFile, err) - } - if err := os.WriteFile(debugFile, content, 0644); err != nil { - return nil, fmt.Errorf("write debug config file %q: %w", debugFile, err) - } - return cfg, nil }