root / pykota / trunk / pykota / logger.py @ 697

Revision 697, 1.4 kB (checked in by jalet, 21 years ago)

import statement didn't work as expected

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# PyKota
2#
3# PyKota : Print Quotas for CUPS
4#
5# (c) 2003 Jerome Alet <alet@librelogiciel.com>
6# You're welcome to redistribute this software under the
7# terms of the GNU General Public Licence version 2.0
8# or, at your option, any higher version.
9#
10# You can read the complete GNU GPL in the file COPYING
11# which should come along with this software, or visit
12# the Free Software Foundation's WEB site http://www.fsf.org
13#
14# $Id$
15#
16# $Log$
17# Revision 1.2  2003/02/05 22:02:22  jalet
18# __import__ statement didn't work as expected
19#
20# Revision 1.1  2003/02/05 21:28:17  jalet
21# Initial import into CVS
22#
23#
24#
25
26import sys
27
28class PyKotaLoggingError(Exception):
29    """An exception for logging related stuff."""
30    def __init__(self, message = ""):
31        self.message = message
32        Exception.__init__(self, message)
33    def __repr__(self):
34        return self.message
35    __str__ = __repr__
36
37def openLogger(config) :
38    """Returns the appropriate logger subsystem object."""
39    backend = config.getLoggingBackend()
40    try :
41        if not isalpha(backend) :
42            # don't trust user input
43            raise ImportError
44        exec "from pykota.loggers import %s as loggingbackend" % backend.lower()   
45    except ImportError :
46        raise PyKotaLoggingError, "Unsupported logging subsystem %s" % backend
47    else :   
48        return getattr(loggingbackend, "Logger")()
Note: See TracBrowser for help on using the browser.