The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Devel::TRay - See what your code's doing

AUTHOR

Pavel P. Serikov <pavelr@cpan.org>

LICENCE

Perl5

SYNOPSIS

    #!/usr/bin/perl -d:TRay

or

    perl -d:TRay script.pl
        

DESCRIPTION

Fork of Devel::CallTrace with following additions

  • Filter output as easy as Devel::KYTProf

  • Ability to not show public and CORE module calls

See module tests for more details.

FILTERS USAGE

You can use multiple filters with syntax like

    -d:TRay=subs_matching=X:hide_core=1:hide_cpan=1:hide_eval=1:show_lines=0

( import options are separated with ':' symbol )