pretty()
will marshal the data to JSON and then log it at the INFO
level. The default indention setting is 2
spaces and if set to 0
, it will print on a single line.
pretty({"spaces": 2})
message in
{
"_id": 0,
"name": "transporter",
"type": "function"
}
config
pretty({"spaces":0})
log line
INFO[0000]
{"_id":0,"name":"transporter","type":"function"}
config
pretty({"spaces":2})
log line
INFO[0000]
{
"_id":0,
"name":"transporter",
"type":"function"
}