mirror of
https://github.com/iptv-org/iptv
synced 2025-12-20 12:27:27 -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