From a8f2ebed9cda1c53c3a21196577e2e3639fe9eeb Mon Sep 17 00:00:00 2001 From: "mubashir1osmani (aider)" Date: Mon, 1 Sep 2025 01:17:46 -0400 Subject: [PATCH] fix: import verbose_proxy_logger to resolve undefined name errors --- enterprise/litellm_enterprise/proxy/guardrails/endpoints.py | 1 + 1 file changed, 1 insertion(+) diff --git a/enterprise/litellm_enterprise/proxy/guardrails/endpoints.py b/enterprise/litellm_enterprise/proxy/guardrails/endpoints.py index 47bec519c4..85f8bf2241 100644 --- a/enterprise/litellm_enterprise/proxy/guardrails/endpoints.py +++ b/enterprise/litellm_enterprise/proxy/guardrails/endpoints.py @@ -13,6 +13,7 @@ from typing import Dict, List, Optional from fastapi import APIRouter, Depends, HTTPException from pydantic import BaseModel +from litellm._logging import verbose_proxy_logger from litellm.integrations.custom_guardrail import CustomGuardrail from litellm.proxy._types import UserAPIKeyAuth from litellm.proxy.auth.user_api_key_auth import user_api_key_auth