UNPKG

@relative-ci/agent

Version:

Send bundle stats and CI build information to RelativeCI

17 lines (14 loc) 329 B
'use strict'; /** * 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