report(thing) { var report = ""; report += "Report For "+ thing + "\n"; if (thing.structureType != null) { report += "Type: STRUCTURE\n"; } else if ( thing instanceof Creep ) { report += "Type: CREEP\n"; } report += "ID: " + thing.id + "\n"; report += "---------------\n"; report += "STRINGIFIED:\n" + JSON.stringify(thing) + "\n"; report += "---------------\n"; console.log(report); }---------------Report For [creep Kaelyn]Type: CREEPID: 58841ace5f886cd81fe8c6a6~~~~~~~~~~STRINGIFIED:{"room":{"name":"E75N2","mode":"world","energyAvailable":500,"energyCapacityAvailable":550},"pos":{"x":24,"y":14,"roomName":"E75N2"},"id":"58841ace5f886cd81fe8c6a6","name":"Kaelyn","body":[{"type":"work","hits":100},{"type":"carry","hits":100},{"type":"carry","hits":100},{"type":"move","hits":100},{"type":"move","hits":100}],"my":true,"owner":{"username":"MrC0de"},"spawning":false,"ticksToLive":1440,"carryCapacity":100,"carry":{"energy":2},"fatigue":0,"hits":500,"hitsMax":500}~~~~~~~~~~Thanks your answers all helped me along!- Man from Future