UNPKG

@cloud-cli/store

Version:
13 lines (12 loc) 263 B
/* istanbul ignore file */ const debugEnabled = !!process.env.DEBUG; export class Logger { static log(...args) { console.log(...args); } static debug(...args) { if (!debugEnabled) return; this.log(...args); } }