fix: add endpoint route debugs

This commit is contained in:
Ashwin Bharambe 2025-04-25 10:39:30 -07:00
parent f5dae0517c
commit 4bbd0c0693

View file

@ -461,6 +461,7 @@ def main(args: Optional[argparse.Namespace] = None):
raise ValueError(f"Could not find method {endpoint.name} on {impl}!!")
impl_method = getattr(impl, endpoint.name)
logger.debug(f"{endpoint.method.upper()} {endpoint.route}")
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=UserWarning, module="pydantic._internal._fields")