Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我打算从我的应用程序中制作一个测试版,我想在数据库中记录所有异常(日志错误)。有一种方法可以捕获所有异常并以我可以找到更多错误并修复它们的方式记录它?
也许最简单的方法是有一种方法负责将数据保存到数据库中。
然后你应该将你的代码包装在try...catch块中并捕获所有可能的异常并将异常消息传递给该方法。
try...catch