mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 21:59:49 +00:00
disable fastapi access logs
This commit is contained in:
parent
208cded50e
commit
83de0c7995
2 changed files with 8 additions and 6 deletions
|
|
@ -347,7 +347,7 @@ def main():
|
|||
|
||||
listen_host = ["::", "0.0.0.0"] if not args.disable_ipv6 else "0.0.0.0"
|
||||
print(f"Listening on {listen_host}:{args.port}")
|
||||
uvicorn.run(app, host=listen_host, port=args.port)
|
||||
uvicorn.run(app, host=listen_host, port=args.port, access_log=False)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue