function createRotatingLogger()

in index.js [10:12]


function createRotatingLogger(name, filepath, maxFileSize, maxFiles) {
	return createLogger('rotating', name, filepath, maxFileSize, maxFiles);
}