From 3a7e2d8203253c03bd3b048011740d294b12c80c Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Thu, 15 May 2025 21:20:41 -0400 Subject: [PATCH] Fix import --- src/fastmcp/client/auth/oauth_cache.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/fastmcp/client/auth/oauth_cache.py b/src/fastmcp/client/auth/oauth_cache.py index 928b9fa86..1cd3560a4 100644 --- a/src/fastmcp/client/auth/oauth_cache.py +++ b/src/fastmcp/client/auth/oauth_cache.py @@ -4,8 +4,10 @@ from pathlib import Path from typing import Any, ClassVar, Literal from urllib.parse import urlparse -from fastmcp.client.auth.httpx_client import logger from fastmcp.settings import settings +from fastmcp.utilities.logging import get_logger + +logger = get_logger(__name__) class OAuthCache: