Can I expand logs from console.tron.log() in the same fashion as it is in "Action" Timeline?
By clicking on "Action" I can inspect object but when I log console.tron.log(logs for cart:
${this.props.cart})
I am getting just a feedback that I have arrays of objects, and no possibility to inspect them.
Is there a way to inspect objects using console.tron.log() with "``" to write a string to name a logs?

How are you passing the data to console.tron.log?
console.tron.log(${this.props.cart})
with "``"
Ok, so I can just pass the this.props.cart and inpsect the object, but I would like to use "``" to write a string to know what I am logging.
I updated the question
A couple of options (sorry for butting in @rmevans9 -- you're probably typing something right now too ).
console.tron.log({ cart: this.props.cart })
console.tron.display({ name: 'CART', value: this.props.cart, preview: 'omg whats inside?' })
I was indeed... gotta work on those typing skills to get faster at my responses lol.
Most helpful comment
A couple of options (sorry for butting in @rmevans9 -- you're probably typing something right now too ).