iptv-checker
Version:
Node.js CLI tool for checking links in IPTV playlists
24 lines (19 loc) • 354 B
JavaScript
export class Logger {
constructor({ config }) {
this.config = config
}
info(msg) {
this.print(msg)
}
error(err) {
this.print(err)
}
debug(msg) {
if (this.config.debug) this.print(msg)
}
print(msg) {
if (typeof msg === `object`) {
console.log(JSON.stringify(msg, null, 1))
} else console.log(msg)
}
}