timholy / SnoopCompile.jl

Provide insights about latency (TTFX) for Julia packages
https://timholy.github.io/SnoopCompile.jl/dev/
Other
309 stars 48 forks source link

Docs: add `maxdepth=100` arg to print_tree #394

Closed IanButterworth closed 2 weeks ago

IanButterworth commented 4 weeks ago

Without this it's common to get truncation because the default is 5.

And discoverability isn't great because AbstractTrees.print_tree isn't documented https://juliacollections.github.io/AbstractTrees.jl/stable/search/?q=print_tree but has a docstring that shows this arg https://github.com/JuliaCollections/AbstractTrees.jl/blob/af3fabd36631efe361bc8e1ba45f9b84e898b459/src/printing.jl#L17

codecov[bot] commented 2 weeks ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 82.84%. Comparing base (622b233) to head (89ae8b8). Report is 17 commits behind head on master.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #394 +/- ## ========================================== + Coverage 78.96% 82.84% +3.87% ========================================== Files 17 12 -5 Lines 2054 1784 -270 ========================================== - Hits 1622 1478 -144 + Misses 432 306 -126 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

timholy commented 2 weeks ago

Thanks!