Log a provider call using the global logger instance
(request_id: str, provider_request: Dict[str, Any], provider_response: Dict[str, Any])
| 255 | |
| 256 | |
| 257 | def log_provider_call(request_id: str, provider_request: Dict[str, Any], provider_response: Dict[str, Any]) -> None: |
| 258 | """Log a provider call using the global logger instance""" |
| 259 | if _global_logger and _global_logger.enabled: |
| 260 | _global_logger.log_provider_call(request_id, provider_request, provider_response) |
| 261 | |
| 262 | |
| 263 | def log_error(request_id: str, error_message: str) -> None: |
nothing calls this directly
no test coverage detected