Show
Ignore:
Timestamp:
06/10/03 18:37:54 (21 years ago)
Author:
jalet
Message:

Deletion of the second user which is not needed anymore.
Added a debug configuration field in /etc/pykota.conf
All queries can now be sent to the logger in debug mode, this will
greatly help improve performance when time for this will come.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/logger.py

    r952 r1021  
    2121# 
    2222# $Log$ 
     23# Revision 1.7  2003/06/10 16:37:54  jalet 
     24# Deletion of the second user which is not needed anymore. 
     25# Added a debug configuration field in /etc/pykota.conf 
     26# All queries can now be sent to the logger in debug mode, this will 
     27# greatly help improve performance when time for this will come. 
     28# 
    2329# Revision 1.6  2003/04/23 22:13:57  jalet 
    2430# Preliminary support for LPRng added BUT STILL UNTESTED. 
     
    5561    __str__ = __repr__ 
    5662 
    57 def openLogger(config) : 
     63def openLogger(pykotatool) : 
    5864    """Returns the appropriate logger subsystem object.""" 
    59     backend = config.getLoggingBackend() 
     65    backend = pykotatool.config.getLoggingBackend() 
    6066    try : 
    6167        if not backend.isalpha() :