// Logger.js
function object(obj) {
var jsonStr = JSON.stringify(obj, null, 4);
console.log(jsonStr);
}