The stack trace example prints the recovery message AND the original exception
sbt:cats-effect> exampleJVM/runMain cats.effect.example.StackTraceExample
[info] running cats.effect.example.StackTraceExample
recovered from exception: nice
cats.effect.example.BrokenExample$SomeError
[success] Total time: 0 s, completed Mar. 6, 2023, 9:40:57 p.m.
The no trace example prints only the recovery message
sbt:cats-effect> exampleJVM/runMain cats.effect.example.NoTraceExample
[info] running cats.effect.example.NoTraceExample
recovered from exception: nice
[success] Total time: 2 s, completed Mar. 6, 2023, 9:40:52 p.m.