Tiny update error hint (#5037)

This commit is contained in:
fzyzcjy
2025-04-21 00:47:47 -07:00
committed by GitHub
parent dc86f25a57
commit 453d412cdb
+3 -1
View File
@@ -450,7 +450,9 @@ def popen_launch_server(
return_code = process.poll()
if return_code is not None:
raise Exception(f"Server unexpectedly exits ({return_code=}).")
raise Exception(
f"Server unexpectedly exits ({return_code=}). Usually there will be error logs describing the cause far above this line."
)
time.sleep(10)