diff --git a/src/python-fastui/fastui/auth/google.py b/src/python-fastui/fastui/auth/google.py index 9602a400..7b9d1170 100644 --- a/src/python-fastui/fastui/auth/google.py +++ b/src/python-fastui/fastui/auth/google.py @@ -104,7 +104,6 @@ async def exchange_code(self, code: str) -> GoogleExchange: if exchange := EXCHANGE_CACHE.get(cache_key, self._exchange_cache_age): return exchange else: - print('getting exchange code from google and setting cache') exchange = await self._exchange_code(code) EXCHANGE_CACHE.set(cache_key, exchange, self._exchange_cache_age) return exchange @@ -171,9 +170,7 @@ def get(self, key: str, max_age: timedelta) -> Union[GoogleExchange, None]: return value[1] def set(self, key: str, value: GoogleExchange, max_age: timedelta) -> None: - print('setting cache') self._cache[key] = (datetime.now(), value) - print('cache', self._cache) def _purge(self, max_age: timedelta) -> None: now = datetime.now()