const logEnable = true export function log(msg) { if(logEnable) { console.log('play : ' + JSON.stringify(msg)) } } export default { log }