From ac5f3bdc1ca7ad067a11164c9a07d07054049342 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:34:14 -0700 Subject: [PATCH] log env --- config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config.go b/config.go index ffb6bfb..6bb4a1d 100644 --- a/config.go +++ b/config.go @@ -111,6 +111,7 @@ func newConfig() (Config, error) { func envOr(k, v string) string { if s := os.Getenv(k); s != "" { + log.Printf("found $%s = %s", k, s) return s } return v