Hello, After upgrading Prefect to 3.1.12 version,...
# ask-community
v
Hello, After upgrading Prefect to 3.1.12 version, it was replaced web server to Uvicorn one and self-hosting Prefect server started showing too many messages. How to change logging level or disable those messages?
Copy code
INFO:     10.0.79.173:0 - "POST /api/work_pools/dev-pool/queues/filter HTTP/1.1" 200 OK
INFO:     10.0.79.173:0 - "POST /api/flow_runs/lateness HTTP/1.1" 200 OK
INFO:     10.0.79.173:0 - "POST /api/flow_runs/count HTTP/1.1" 200 OK
INFO:     10.0.79.173:0 - "POST /api/work_pools/dev-pool/workers/filter HTTP/1.1" 200 OK
INFO:     10.0.79.173:0 - "POST /api/flow_runs/count HTTP/1.1" 200 OK
INFO:     10.0.79.173:0 - "POST /api/flow_runs/count HTTP/1.1" 200 OK
INFO:     10.0.79.173:0 - "POST /api/flow_runs/count HTTP/1.1" 200 OK
Thank you.
n
hi @Vitaly Saversky! i have reproduced this and opened a PR with a fix https://github.com/PrefectHQ/prefect/pull/16765
v
Thank you, @Nate.
catjam 1
n
if you have `uv` you can test this now with this command
Copy code
uvx --with git+<https://github.com/PrefectHQ/prefect.git@refs/pull/16765/head> prefect server start
otherwise we will merge and release this soon! thanks for raising this 👍
v
🙂