【python】logging日志保留json输出格式

2022/1/10 22:04:01

本文主要是介绍【python】logging日志保留json输出格式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1. 默认打印是一行的

debug_logger.info(f'[rsp json] {rsp.json()}')
2022-01-10 20:38:53,108 | root | INFO | [rsp json] {'code': 200, 'msg': 'SUCCESS', 'data': {'id': 1, 'username'

2. 保留格式输出

debug_logger.info(f'[rsp json] {json.dumps(rsp.json(), sort_keys=True, indent=2) }')
2022-01-10 20:38:53,123 | root | INFO | [rsp json] {
  "code": 200,
  "data": [],
  "msg": "SUCCESS"
}

 



这篇关于【python】logging日志保留json输出格式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程