From 7a951f198d141e946099e8ecee5193201ab0b12c Mon Sep 17 00:00:00 2001 From: Mahyar Mirrashed Date: Thu, 19 Dec 2024 21:42:59 -0600 Subject: [PATCH] chore: add debug statements for envvars --- cmd/root.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/root.go b/cmd/root.go index 6a0e542..89429bf 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -30,6 +30,9 @@ var rootCmd = &cobra.Command{ return fmt.Errorf("GITHUB_TOKEN not provided") } + log.Debug().Msgf("Stats to include: %s", includes) + log.Debug().Msgf("Timezone: %s", cfg.TimeZone) + // Create GraphQL client client := github.NewClient(cfg.GithubToken) ctx := context.Background()