@relative-ci/agent
Version:
Send bundle stats and CI build information to RelativeCI
15 lines (13 loc) • 308 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,
};
export { logger };
//# sourceMappingURL=logger.js.map