iptv/scripts/helpers/log.js
Aleksandr Statciuk 572ca9953c Update log.js
2021-08-18 16:37:47 +03:00

18 lines
327 B
JavaScript

const log = {}
log.print = function (message) {
if (typeof message === 'object') message = JSON.stringify(message, null, 2)
process.stdout.write(message)
}
log.start = function () {
this.print('Starting...\n')
console.time('Done in')
}
log.finish = function () {
console.timeEnd('Done in')
}
module.exports = log