We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b461a commit ac3c287Copy full SHA for ac3c287
src/snowflake/connector/auth/oauth_code.py
@@ -68,7 +68,7 @@ def __init__(
68
self.redirect_uri = redirect_uri
69
self.scope = scope
70
self._state = secrets.token_urlsafe(43)
71
- logger.debug("chose oauth state: %s", self._state)
+ logger.debug("chose oauth state: %s", "".join("*" for _ in self._state))
72
self._oauth_token = None
73
self._protocol = "http"
74
0 commit comments