line_push/node_modules/consola/src/reporters/json.js
2022-07-17 13:16:16 +08:00

10 lines
194 B
JavaScript

export default class JSONReporter {
constructor ({ stream } = {}) {
this.stream = stream || process.stdout
}
log (logObj) {
this.stream.write(JSON.stringify(logObj) + '\n')
}
}