Closed chmac closed 5 years ago
@hschirmacher I spotted this:
logger.add(Meteor.npmRequire('winston-daily-rotate-file'), { level: "info", filename: logDirectory + "/info.log", maxsize: 1024 * 1024 * 10, // 10MB datePattern: ".yyyy-MM", json: false, formatter: function(options) { // We use the 'formatter' option to return our customized string // which will be passed to logger. return (undefined !== options.message ? options.message : ""); } });
Which I guess means the log file never grows beyond 10MB and is probably rotated (deleted and recreated) daily...
@hschirmacher I spotted this:
Which I guess means the log file never grows beyond 10MB and is probably rotated (deleted and recreated) daily...