export const debugLog = (...args: any[]): void => { // Need to figure out how to make this a global function that can be turned on and off. if (true) { console.log(...args); } }