(
configured_client: Union[OpenPipe, AsyncOpenPipe], openpipe_options={}
)
| 53 | |
| 54 | |
| 55 | def _should_log_request( |
| 56 | configured_client: Union[OpenPipe, AsyncOpenPipe], openpipe_options={} |
| 57 | ): |
| 58 | if configured_client.api_key == "": |
| 59 | return False |
| 60 | |
| 61 | return openpipe_options.get("log_request", True) |
| 62 | |
| 63 | |
| 64 | def report( |
no outgoing calls
no test coverage detected