Describe the feature you'd like.


Example console color:
console.log(
`%cTotal Items: %c${body.length}`,
'font-weight: bold',
'color: #1976d2'
);
Example console group:
console.groupCollapsed(
`%c${key} %c(${value.length} items)`,
'font-weight: bold',
'color: #1976d2'
);
logResponseBody(value);
console.groupEnd();
Describe the feature you'd like.
Example console color:
Example console group: