Skip to content

Commit

Permalink
stop logging refresh token
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Mar 27, 2024
1 parent 4d76083 commit 98f66e0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tap_gohighlevel/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ def update_access_token(self) -> None:

self.refresh_token = token_json["refresh_token"]
self._write_back_to_config("refresh_token", self.refresh_token)
self.logger.info("OAuth refresh_token: %s", self.refresh_token)
self.logger.info(
"OAuth refresh_token updated in %s",
self.write_back_config_path
)
expiration = token_json.get("expires_in", self._default_expiration)
self.expires_in = int(expiration) if expiration else None
if self.expires_in is None:
Expand Down

0 comments on commit 98f66e0

Please sign in to comment.