import config from '../config'; export const logger = { debug(...args: Array) { if (config.debug) console.debug('[ASL Debug]', ...args); } }