英文:
Error handling in go, which file and line?
问题
我没有找到更好的方法来以长格式显示错误详细信息。
log.SetFlags(log.Llongfile)
我特别关注错误发生的文件和行号。有没有一种方法可以在整个应用程序范围内设置长格式,而不是在每个函数中添加?
英文:
I did not find a better way to show error details in long form.
log.SetFlags(log.Llongfile)
I am particularly interested which file and line error happened. Is it any way to set long format application wide rather than add to every function?
答案1
得分: 0
你可能想考虑使用gin
来监视并告诉你构建后发生错误的位置。
英文:
You might want to consider gin
to watch and tells you where errors happened after build.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论