时间:2021-01-02 15:13:43 | 栏目:Python代码 | 点击:次
我就废话不多说啦,还是直接看代码吧!
try: print(a) except Exception as e: print(e) print(e.__traceback__.tb_frame.f_globals["__file__"]) # 发生异常所在的文件 print(e.__traceback__.tb_lineno) # 发生异常所在的行数
补充知识:catch中打出完整错误日志,包括Exception类型和报错行数
try(){ }catch(Exception e){ }
在catch中打出完整错误日志,包括Exception类型和报错行数
方法:在catch块中加入代码
1)
ByteArrayOutputStream baos = new ByteArrayOutputStream(); e.printStackTrace(new PrintStream(baos)); String exception = baos.toString(); System.out.println("baos:" + exception);
2)
logger.error("",e);