Skip to content

Commit c6b0cb4

Browse files
committed
set uvicorn logs to warning so that their route logs are no longer shown (we now have our own copy of that but in privacy based)
1 parent 3dc8932 commit c6b0cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/whisper_api/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def start():
357357
# TODO:
358358
# forwarded_allow_ips= should be set via env var
359359
# proxy_headers=True only when needed
360-
uvicorn.run(app, host=API_LISTEN, port=API_PORT, proxy_headers=True, forwarded_allow_ips="*", log_level="debug")
360+
uvicorn.run(app, host=API_LISTEN, port=API_PORT, proxy_headers=True, forwarded_allow_ips="*", log_level="warning")
361361

362362

363363
if __name__ == "__main__":

0 commit comments

Comments
 (0)