@relative-ci/agent
Version:
Send bundle stats and CI build information to RelativeCI
17 lines (14 loc) • 329 B
JavaScript
;
/**
* Basic logger that needs to share the same api
* with `console` and plugin loggers(eg: WebpackLogger)
*/
const logger = {
debug: console.log,
log: console.log,
info: console.info,
warn: console.warn,
error: console.error,
};
exports.logger = logger;
//# sourceMappingURL=logger.js.map