set log_level to debug in uvicorn
This commit is contained in:
parent
732bdf43fd
commit
fcab3fb6c3
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
||||||
import uvicorn
|
import uvicorn
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
uvicorn.run("torrent_downloader.app:app", host="0.0.0.0", port=8000, reload=True)
|
uvicorn.run(
|
||||||
|
"torrent_downloader.app:app", host="0.0.0.0", port=8000, reload=True, log_level="debug"
|
||||||
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue