Changeset 707

Show
Ignore:
Timestamp:
02/06/03 00:09:20 (21 years ago)
Author:
jalet
Message:

Name conflict

Location:
pykota/trunk
Files:
1 added
1 removed
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/conf/pykota.conf.sample

    r695 r707  
    3131 
    3232# Where to log ? 
    33 # supported values : stderr, syslog 
     33# supported values : stderr, system (system means syslog, but don't use 'syslog' here) 
    3434logger: stderr 
    3535 
  • pykota/trunk/pykota/config.py

    r695 r707  
    1515# 
    1616# $Log$ 
     17# Revision 1.2  2003/02/05 23:09:20  jalet 
     18# Name conflict 
     19# 
    1720# Revision 1.1  2003/02/05 21:28:17  jalet 
    1821# Initial import into CVS 
     
    5760                 
    5861        # more precise checks         
    59         validloggers = [ "stderr", "syslog" ]  
     62        validloggers = [ "stderr", "system" ]  
    6063        if self.config.get("global", "logger").lower() not in validloggers :              
    6164            raise PyKotaConfigError, "Option logger only supports values in %s" % str(validloggers)