Increasing Log Depth for `pretty` Logger in Effect Typescript

Is there a way of increasing the log depth of the 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.

yield* Console.log(inspect(emailAddressJsonSchema, { depth: null }))
Screenshot_2025-08-11_at_09.49.12.png
Screenshot_2025-08-11_at_10.34.57.png
Was this page helpful?