Commit 86a46ad6 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

print func args kwargs for debug purpose

parent 9b73aea1
Pipeline #3240 passed with stage
in 0 seconds
......@@ -30,4 +30,7 @@ def retry(func, *args, **kwargs):
return res
except BaseException as e:
print(f"Error occurs: {e.__repr__()}")
print(f" - func: {func}")
print(f" - args: {args}")
print(f" - kwargs: {kwargs}")
raise RuntimeError(f"All {n_try} attempts failed.")
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment