import config from '../config';

export const logger = {
    debug(...args: Array<any>) {
        if (config.debug)
            console.debug('[ASL Debug]', ...args);
    }
}
