Changeset 1620 in tailor


Ignore:
Timestamp:
06/04/08 14:15:56 (5 years ago)
Author:
lele@…
Hash name:
20080604121556-97f81-0e72c2a09024cc6e9ff0a2be99cf9c3040d0e4b1
Message:

Revise logged information
Show the author and the timestamp of the upstream changeset, and strip
the trailing waitspace from the changelog.

Location:
vcpx
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/svn.py

    r1547 r1620  
    221221 
    222222        # The path is outside our tracked tree... 
    223         repository.log.warning('Ignoring %r since it is not under %r', 
    224                                path, module) 
     223        repository.log.debug('Ignoring "%s" since it is not under "%s"', 
     224                             path, module) 
    225225        return None 
    226226 
  • vcpx/tailor.py

    r1619 r1620  
    3939 
    4040        if self.verbose: 
    41             self.log.info('Changeset "%s"', changeset.revision) 
     41            self.log.info('Upstream revision "%s" by %s, %s', 
     42                          changeset.revision, changeset.author, 
     43                          changeset.date) 
    4244            if changeset.log: 
    43                 self.log.info("Log message: %s", changeset.log) 
     45                self.log.info("Log message: %s", changeset.log.rstrip()) 
    4446        self.log.debug("Going to apply changeset:\n%s", str(changeset)) 
    4547        return True 
  • vcpx/repository/bzr.py

    r1590 r1620  
    374374            logmessage.append(changelog) 
    375375        if logmessage: 
    376             self.log.info('Committing %r...', logmessage[0]) 
     376            self.log.info('Committing %s...', logmessage[0]) 
    377377            logmessage = '\n'.join(logmessage) 
    378378        else: 
  • vcpx/repository/hg.py

    r1616 r1620  
    431431            logmessage.append(changelog) 
    432432        if logmessage: 
    433             self.log.info('Committing %r...', logmessage[0]) 
     433            self.log.info('Committing %s...', logmessage[0]) 
    434434            logmessage = encode('\n'.join(logmessage)) 
    435435        else: 
Note: See TracChangeset for help on using the changeset viewer.