When I have a line of code, and I try to output it to the console, I only see [object Object] instead of the actual object types.
console.log(`%c ${args[args.length-1]} ${performance['now'](true, args[args.length-1])} [(${args.slice(0, args.length-1)} *) ${message}]`, 'color:' + color)
https://i.sstatic.net/wna7t.png
Is there a way to display the actual contents of objects in the console?
console.log(`%c ${args[args.length-1]} ${performance['now'](true, args[args.length-1])} [(${args.slice(0, args.length-1)} *) ${message}]`, 'color:' + color)