We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moonlark 中存在部分这种结构的代码:
while True: try: ... except: continue
或
try: ... except: pass
对这些语句添加 logger.warning(traceback.format_exc()) 进行异常记录,而不是直接忽略。
logger.warning(traceback.format_exc())
和
The text was updated successfully, but these errors were encountered:
您好 @This-is-XiaoDeng! 感谢您参与 Moonlark 项目,我们会尽快回复您,请留意 GitHub 上的通知。
Sorry, something went wrong.
对部分 except 后的 continue 语句进行优化 #232
4de1f53
This-is-XiaoDeng
Successfully merging a pull request may close this issue.
描述
Moonlark 中存在部分这种结构的代码:
或
对这些语句添加
logger.warning(traceback.format_exc())
进行异常记录,而不是直接忽略。原因
和
The text was updated successfully, but these errors were encountered: