File: README

package info (click to toggle)
libdevel-simpletrace-perl 0.08-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 164 kB
  • ctags: 6
  • sloc: perl: 86; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,121 bytes parent folder | download | duplicates (4)
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
NAME

    Devel::SimpleTrace - See where you code warns and dies using stack traces


DESCRIPTION

    This module can be used to more easily spot the place where a program or
    a module generates errors. Its use is extremely simple, you just need to
    load it.

    This is achieved by modifying the functions warn() and die() in order 
    to replace the standard messages by complete stack traces that precisely
    indicates how and where the error or warning occurred. Other than this, 
    their use should stay unchanged, even when using die() inside eval().


INSTALLATION

    To install this module, run the following commands:

        perl Makefile.PL
        make
        make test
        make install


    Alternatively, to install with Module::Build, you can use the 
    following commands:

        perl Build.PL
        ./Build
        ./Build test
        ./Build install


COPYRIGHT AND LICENCE

    Copyright (C) 2004-2011 Sébastien Aperghis-Tramoni <sebastien@aperghis.net>

    This library is free software; you can redistribute it and/or modify
    it under the same terms as Perl itself.