友好蜗牛

文章
3
资源
0
加入时间
2年10月17天

python 捕获异常并显示具体错误

我们在具体实施某个工程时,可能会遇到未知的错误需要兜底,需要捕获异常的同时显示具体错误,直接上代码。import loggingimport tracebackdef get_logger(file_path,logging_level): logger=logging.getLogger(__name__) logger.setLevel(level=logging.INFO) hander=logging.FileHandler(file_path) hander