• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D01-Mar-2008480 2013

Log.pmH A D01-Mar-200820.7 KiB722264

MANIFESTH A D01-Mar-2008147 98

META.ymlH A D01-Mar-2008415 1412

Makefile.PLH A D01-Mar-2008506 118

READMEH A D15-Jul-20071.2 KiB4429

test.plH A D15-Jul-20071.2 KiB5633

README

1File/Log version 1.3
2====================
3
4This is version 1.3 of File::Log, a module to allow simple logging
5of data to a file.  It provides for control over the amount of data
6written by defining a debug value (where higher values represent more
7log detail.  There is also an exception method which is used to log
8errors (which are printed with leading ** characters).
9
10There are quite a few configuration flags to control how the application
11logs data.  You can configure timestamps on the data and/or the log file.
12
13You can configure File::Log to store any exceptions internally.  The
14combined errors can then be extracted with a call to $log->getExpText()
15which could be used at the end of your application to email to the
16administrator
17
18INSTALLATION
19
20To install this module type the following:
21
22   perl Makefile.PL
23   make
24   make test
25   make install
26
27DEPENDENCIES
28
29This module requires the two standard modules:
30
31  Carp,
32  Symbol
33
34and
35
36  POSIX if 'dateformat' flag to new is used
37
38COPYRIGHT AND LICENCE
39
40Copyright (c) 1999- Greg George. All rights reserved. This
41library is free software; you can redistribute it and/or modify it under
42the same terms as Perl itself.
43
44