export function log()

in MacrobenchmarkSample/functions/src/logger.ts [5:14]


export function log(message: string, ...args: any[]) {
  if (IS_LOG) {
    let length = args ? args.length : 0;
    if (length > 0) {
      console.log(TAG, message, ...args);
    } else {
      console.log(TAG, message);
    }
  }
};