Show
Ignore:
Timestamp:
02/28/03 00:48:41 (21 years ago)
Author:
jalet
Message:

Correctly maps PyKota's log levels to syslog log levels

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/edpykota

    r824 r825  
    1717# 
    1818# $Log$ 
     19# Revision 1.24  2003/02/27 23:48:41  jalet 
     20# Correctly maps PyKota's log levels to syslog log levels 
     21# 
    1922# Revision 1.23  2003/02/27 22:55:20  jalet 
    2023# WARN log priority doesn't exist. 
     
    212215        if (softlimit is not None) and (hardlimit is not None) and (hardlimit < softlimit) :         
    213216            # error, exchange them 
    214             self.logger.log_message(_("Hard limit %i is less than soft limit %i, values will be exchanged.") % (hardlimit, softlimit), "info") 
     217            self.logger.log_message(_("Hard limit %i is less than soft limit %i, values will be exchanged.") % (hardlimit, softlimit)) 
    215218            (softlimit, hardlimit) = (hardlimit, softlimit) 
    216219        if not names :