6 lines
181 B
JavaScript
6 lines
181 B
JavaScript
|
|
const winston = require("winston");
|
||
|
|
const DailyRotateFile = require("./daily-rotate-file");
|
||
|
|
|
||
|
|
winston.transports.DailyRotateFile = DailyRotateFile;
|
||
|
|
module.exports = DailyRotateFile;
|