- or download this
...
my @stack = $self->{stack};
($self->{stacktraces}{join('->',@{$self->{stack}})} = \@stack )
&& ...
- or download this
...
my @stack = @{ $self->{stack} };
($self->{stacktraces}{ join('->', @{$self->{stack}}) } = \@stack)
&& ...
- or download this
sub print {
use Data::Dump;
my $self = shift;
dd $self;
}
- or download this
...
$CSA->TraceFile(\@tracecontent);
$CSA->print;
...