Skip to content

Latest commit

 

History

History
9 lines (4 loc) · 532 Bytes

logging_with_log_rotation_and_compression.md

File metadata and controls

9 lines (4 loc) · 532 Bytes

Python简单日志中讨论了如何处理日志的方法,但是大量的日志会消耗存储资源,需要有一个良好的日志轮转和压缩功能。

通常在操作系统级别会采用通用的logrotate工具来实现日志轮转和压缩,但是对于python来说,也有丰富的日志库可以实现日志轮转和压缩功能。

参考