Changeset 147 for pykoticon

Show
Ignore:
Timestamp:
06/08/06 00:10:22 (18 years ago)
Author:
jerome
Message:

Deuglified some debug messages.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykoticon/trunk/bin/pykoticon

    r146 r147  
    118118            (birth, value) = cacheentry  
    119119            if (time.time() - birth) < self.cacheduration : 
    120                 self.logDebug("Cache hit for %s ---> %s" % (str(key), value)) 
     120                self.logDebug("Cache hit for %s" % str(key)) 
    121121                return value # NB : we don't extend the life of this entry 
    122122            else :     
     
    129129        """Stores an entry in the cache.""" 
    130130        self.cache[key] = (time.time(), value) 
    131         self.logDebug("Cache store for %s ---> %s" % (str(key), value)) 
     131        self.logDebug("Cache store for %s" % str(key)) 
    132132         
    133133    def export_askDatas(self, labels, varnames, varvalues) :