Disable uvicorn access logging in favor of cleaner server-side logging, we already get all that info; Print the request metadata

This commit is contained in:
cmdr2
2022-12-09 22:47:34 +05:30
parent cde8c2d3bd
commit a2af811ad2
5 changed files with 7 additions and 6 deletions

View File

@ -322,6 +322,6 @@ cd ..
export SD_UI_PATH=`pwd`/ui
cd stable-diffusion
uvicorn server:server_api --app-dir "$SD_UI_PATH" --port ${SD_UI_BIND_PORT:-9000} --host ${SD_UI_BIND_IP:-0.0.0.0}
uvicorn server:server_api --app-dir "$SD_UI_PATH" --port ${SD_UI_BIND_PORT:-9000} --host ${SD_UI_BIND_IP:-0.0.0.0} --log-level critical
read -p "Press any key to continue"