1
0
Fork 0
gnuviechadmin-historic/backend/log4py
Jan Dittberner dc0da570ab bringing log4py-1.3 into the main branch
git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@85 a67ec6bc-e5d5-0310-a910-815c51eb3124
2004-12-26 12:53:50 +00:00
..
database bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00
doc bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00
log4py-classtest.py bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00
log4py-test.py bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00
log4py.conf bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00
log4py.py bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00
readme.txt bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00
setup.py bringing log4py-1.3 into the main branch 2004-12-26 12:53:50 +00:00

Log4Py ReadMe:

Log4Py is a Python logging module similar to log4j. It supports multiple levels
of logging and configurable output (either to stdout/stderr or to files). A
list of available format strings and ouput parameters can be found at the
beginning of log4py.py.

Installation:

    Automatic:
        Using Python's Distutils, you can execute:
        "python setup.py install"

    Manually:
        Either copy log4py.py into your project directory or to your site-packages directory.

Usage:

    from log4py import Logger

    class foo:
        def __init__(self):
	    cat = Logger().get_instance(self)

    Have a look at log4py-test.py and log4py-classtest.py for examples.
    For logging to databases, please have a look at the database/ directory

If you have any comments or questions, don't hesitate to contact me ;-)

Martin 						<Martin.Preishuber@eclipt.at>