Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个Winston记录器:
_logger.add(logger.transports.File, { filename: conf_fileName, timestamp:'true', maxsize: 1024, maxFiles: 2 });
但几个小时后,我有很多大小约为 2kb 的文件。记录器定义有问题吗?
以maxsize字节为单位 - 因此您将日志文件限制为 1KB(您的操作系统可能将其报告为 2KB)。
maxsize
如果你想要 1MB,试试maxsize: 1048576
maxsize: 1048576
存在一个问题,其中设置maxFiles和maxsize设置都不符合您的maxFiles设置。
maxFiles
在问题跟踪器上查看此问题