A trust and safety agent that interacts with Osprey for investigation, real-time analysis, and prevention implementations

disable httpx loggign

+4
+4
main.py
··· 21 21 22 22 logger = logging.getLogger(__name__) 23 23 24 + # disable httpx verbose logging 25 + httpx_logger = logging.getLogger("httpx") 26 + httpx_logger.setLevel(logging.WARNING) 27 + 24 28 25 29 SHARED_OPTIONS: list[Callable[..., Callable[..., object]]] = [ 26 30 click.option("--clickhouse-host"),