oglimmer/podcast-human-syncer

View on GitHub
server/log.js

Summary

Maintainability
A
0 mins
Test Coverage

const DEBUG = false

module.exports = (functionName, output) => {
  if (DEBUG) {
    console.log(`****************************** ${functionName}:: ${output}`)
  }
}