Postman Console log can we highlight certain text in BOLD and COLOR

Hi,

Doesn’t find a way for customize view of console. It’s not html embedded so that quite challenging.
The best workaround I found so fare is to generate an id of the checks/request and log it along with the result :

var id_1 = Math.floor(Math.random() * 10000)
var id_2 = Math.floor(Math.random() * 10000)
console.log(id_1,{ title:"a"})
console.log(id_2,{ title:"1"})
console.log(id_1,{ title:"b"})
console.log(id_1,{ title:"c"})

Then , open console


You will acces the searchable console window :

And search by id

I’m not an expert in js and log policy.
There is a possible rule about log : Be generous with your logging but be strict with your logging levels (Serilog lib).
Avoid error / warning, those are for important message that require a solving action / degraded behavior. Info are for verifing correctness of app state once running for production
Log for debug.

Would be curious to know the others user rules about logging in postman!

Take care