UNPKG

@cloud-cli/cli

Version:

CLI for the Cloud CLI project

12 lines (11 loc) 236 B
const debugEnabled = !!process.env.DEBUG; export class Logger { static log(...args) { console.log(...args); } static debug(...args) { if (!debugEnabled) return; this.log(...args); } }