/usr/share/doc/libdebug-trace-perl/README is in libdebug-trace-perl 0.05-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | Debug/Trace version 0.04
========================
Debug::Trace instruments subroutines to provide tracing information
upon every call and return.
Using Debug::Trace does not require any changes to your sources. Most
often, it will be used from the command line:
perl -MDebug::Trace=foo,bar yourprogram.pl
This will have your subroutines foo() and bar() printing call and
return information.
Subroutine names may be fully qualified to denote subroutines in other
packages than the default main::.
By default, the trace information is output using the standard warn()
function.
Modifiers are supported to change the default behavior.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
Minimal Perl version is 5.005_03.
This module uses Perl core modules Data::Dumper and Carp.
This module requires no other modules and libraries.
SEE ALSO
Attributes::Control.
COPYRIGHT AND LICENCE
Copyright 2002,2013 Amsterdam.pm -- All Rights Reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
|