Pretty-print JSON objects
We can format JSON objects by enabling stringify.
By enabling (pretty: true) we can display JSON objects in a more readable format.
var obj = {name: 'carlos', age: 100}; WL.Logger.config({stringify: true, pretty: true});
WL.Logger.config({pretty: false});
Parent topic: Configure the MobileFirst Logger