util.inspect
https://stackoverflow.com/questions/10729276/how-can-i-get-the-full-object-in-node-jss-console-log-rather-than-object
console.dir
よりもっとマシなオブジェクトの表示方法
{a: [Object]}
とかされたくない場合に
console.log(inspect(val, false, null, true))
console.log(inspect(val, {showHidden: false, depth: null, colors: true}))
#Node.js
#コンソールデバッグ