mirror of
https://github.com/iptv-org/iptv
synced 2025-12-20 04:17:35 -05:00
Create log.js
This commit is contained in:
16
scripts/log.js
Normal file
16
scripts/log.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const log = {}
|
||||
|
||||
log.print = function (string) {
|
||||
process.stdout.write(string)
|
||||
}
|
||||
|
||||
log.start = function () {
|
||||
this.print('Starting...\n')
|
||||
console.time('\nDone in')
|
||||
}
|
||||
|
||||
log.finish = function () {
|
||||
console.timeEnd('\nDone in')
|
||||
}
|
||||
|
||||
module.exports = log
|
||||
Reference in New Issue
Block a user