Increasing Log Depth for `pretty` Logger in Effect Typescript
Is there a way of increasing the log depth of the
Ie. doing the equivalent of
Using
pretty logger? Ie. doing the equivalent of
console.dir(value, { depth: null }) or util.inspect(value, { depth: null })Using
util.inspect with the pretty logger formats the value with JSON.stringify ...which forgoes the pretty formatting.

