/* eslint no-console: "off" */

var isEnabled = false;
export function enableDebugLog() {
  isEnabled = true;
}
export function log(msg: any) {
  if (!isEnabled) return;
  console.log(msg);
}