修复中控

This commit is contained in:
dekun
2026-05-25 13:43:22 +08:00
parent 9c67a643a2
commit 1347441bb3
2 changed files with 7 additions and 2 deletions
+5 -1
View File
@@ -795,7 +795,11 @@ async def api_trade_removed_get(exchange_id: str, preview_id: str = ""):
def main():
import uvicorn
uvicorn.run(app, host=HUB_HOST, port=HUB_PORT, log_level="warning", access_log=False)
print(
f"manual-trading-hub start build={HUB_BUILD} listen={HUB_HOST}:{HUB_PORT}",
flush=True,
)
uvicorn.run(app, host=HUB_HOST, port=HUB_PORT, log_level="info", access_log=False)
if __name__ == "__main__":