tangled
alpha
login
or
join now
hailey.at
/
phoebe
0
fork
atom
A trust and safety agent that interacts with Osprey for investigation, real-time analysis, and prevention implementations
0
fork
atom
overview
issues
pulls
pipelines
disable httpx loggign
hailey.at
1 month ago
35434d5b
35b64b0c
+4
1 changed file
expand all
collapse all
unified
split
main.py
+4
main.py
···
21
21
22
22
logger = logging.getLogger(__name__)
23
23
24
24
+
# disable httpx verbose logging
25
25
+
httpx_logger = logging.getLogger("httpx")
26
26
+
httpx_logger.setLevel(logging.WARNING)
27
27
+
24
28
25
29
SHARED_OPTIONS: list[Callable[..., Callable[..., object]]] = [
26
30
click.option("--clickhouse-host"),