Changeset 48361

Show
Ignore:
Timestamp:
08/14/06 10:58:04 (2 years ago)
Author:
scamps
Message:

Fix a little bug: wrong call to the logger

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • CPS3/products/CPSCore/trunk/ProxyBase.py

    r47241 r48361  
    815815    def UNLOCK(self, REQUEST, RESPONSE): 
    816816        """Handle HTTP (and presumably FTP?) UNLOCK requests (WebDAV).""" 
    817         self.logger("UNLOCK()") 
     817        self.logger.debug("UNLOCK()") 
    818818        if self.state != 2: 
    819819            self.logger.debug("BadRequest: Cannot UNLOCK with state != 2") 
     
    825825    def wl_lockValues(self, killinvalids=0): 
    826826        """Handle HTTP (and presumably FTP?) wl_lockValues requests (WebDAV).""" 
    827         self.logger("wl_lockValues()") 
     827        self.logger.debug("wl_lockValues()") 
    828828        if self.state != 2: 
    829829            self.logger.debug("BadRequest: Cannot wl_lockValues with state != 2")