W72crm_web-master/node_modules/webpack-dev-server/lib/createLog.js

20 lines
365 B
JavaScript
Raw Permalink Normal View History

2025-05-27 11:25:53 +08:00
'use strict';
const weblog = require('webpack-log');
module.exports = function createLog(options) {
let logLevel = options.logLevel || 'info';
if (options.quiet === true) {
logLevel = 'silent';
}
if (options.noInfo === true) {
logLevel = 'warn';
}
return weblog({
level: logLevel,
name: 'wds',
timestamp: options.logTime
});
};