diff options
| author | Paul Braeuning <paul@paulgo.io> | 2023-08-24 23:12:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-24 23:12:06 +0200 |
| commit | 9069da051a78290b38c12a49443dc30d7b2652fb (patch) | |
| tree | 71300ada16a97a6750d2afc68d9d7d14f9e1bc37 /searx/network/client.py | |
| parent | 4b42644579581699ad1d4b7974610933277dd021 (diff) | |
| parent | b4e4cfc026fdc287622e0aa5f08db5d1e30ef869 (diff) | |
Merge pull request #2644 from dalf/update_httpx
Bump httpx 0.21.2 from to 0.24.1
Diffstat (limited to 'searx/network/client.py')
| -rw-r--r-- | searx/network/client.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/searx/network/client.py b/searx/network/client.py index ffee3f096..ed1796515 100644 --- a/searx/network/client.py +++ b/searx/network/client.py @@ -180,7 +180,15 @@ def get_loop(): def init(): # log - for logger_name in ('hpack.hpack', 'hpack.table', 'httpx._client'): + for logger_name in ( + 'httpx', + 'httpcore.proxy', + 'httpcore.connection', + 'httpcore.http11', + 'httpcore.http2', + 'hpack.hpack', + 'hpack.table', + ): logging.getLogger(logger_name).setLevel(logging.WARNING) # loop |