Changeset 185

Show
Ignore:
Timestamp:
02/14/07 17:05:41 (6 years ago)
Author:
mk
Message:

Added log message for install_pkg step.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cheesecake/cheesecake_index.py

    r184 r185  
    14021402 
    14031403        if remove_log_file and not self.keep_log: 
    1404             #log_path = os.path.join(self.sandbox, self.logfile) 
    1405             log_path = self.logfile 
    1406             if os.path.exists(log_path): 
     1404            if os.path.exists(self.logfile): 
    14071405                try: 
    1408                     os.unlink(log_path
     1406                    os.unlink(self.logfile
    14091407                except OSError, e: 
    14101408                    # TODO 
     
    17241722              Describes whenever package has been succefully installed. 
    17251723        """ 
     1724        self.log.info("Trying to install package %s" % self.name) 
     1725 
    17261726        self.sandbox_install_dir = os.path.join(self.sandbox, "tmp_install_%s" % self.package_name) 
    17271727