+

Search Tips   |   Advanced Search

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});


Parent topic: Configure the MobileFirst Logger