Winston-daily-rotate 忽略最大文件大小
Posted
技术标签:
【中文标题】Winston-daily-rotate 忽略最大文件大小【英文标题】:Winston-daily-rotate ignores maxFile size 【发布时间】:2022-01-20 13:08:35 【问题描述】:我目前正在尝试在我的 winston 每日旋转文件中设置 maxSize,但该文件总是达到 121 kb 的大小,然后无论为 maxSize 设置什么值,都会创建另一个文件这里是我的代码使用
const transport = new winston.transports.DailyRotateFile(
filename: '%DATE%_log_file.txt',
dirname: path.join(__dirname, '../../', 'logs'),
datePattern: 'YYYY-MM-DD-mm',
maxSize: '20m',
maxFiles: '2d'
);
【问题讨论】:
【参考方案1】:问题在于日期格式的分钟数。由于我的代码运行时间超过一分钟,因此传输会更新文件名,这反过来又会创建另一个日志文件,因为时间已更改。
【讨论】:
以上是关于Winston-daily-rotate 忽略最大文件大小的主要内容,如果未能解决你的问题,请参考以下文章
Firefox中忽略的最大高度适用于Chrome和Safari
使用 staticmethod 或 classmethod 装饰器装饰时,类中的 Python LRU 缓存忽略最大大小限制