diff --git a/snapshot_manager/snapshot_manager/github_util.py b/snapshot_manager/snapshot_manager/github_util.py index b7a4640d..f054f6a9 100644 --- a/snapshot_manager/snapshot_manager/github_util.py +++ b/snapshot_manager/snapshot_manager/github_util.py @@ -48,6 +48,9 @@ def __init__(self, config: config.Config, github_token: str = None, **kwargs): """ self.config = config if github_token is None: + logging.info( + f"Reading Github token from this environment variable: {self.config.github_token_env}" + ) github_token = os.getenv(self.config.github_token_env) auth = github.Auth.Token(github_token) self.github = github.Github(auth=auth)