"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.debug = void 0;
function debug(...args) {
if (process.env.LAMBDACONF_DEBUG || process.env.BREK_DEBUG) {
console.log('[BREK][DEBUG]', ...args);
}
}
exports.debug = debug;