When you do something like the following:
const someObject = { key: 1, anotherKey: 'test' } cy.log("Some object", someObject) It will be rendered in the Cypress UI as Some object, Object{2}
Is there a way to get this to print prettier?
I am on version 10.3.0 here is a result with my actual log message: 
Actual code:
const loginInput = { userContext: "global_", email: finalEmail, password, verificationCode, }; cy.log("Authenticating via GraphQL with the following details", loginInput); 
