Changeset 1524 in tailor
- Timestamp:
- 05/21/08 12:48:35 (5 years ago)
- Hash name:
- 20080521104835-97f81-fdb6dc457788e89fe1ff9a9d36d9abb84f618bf8
- File:
-
- 1 edited
-
vcpx/tailor.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/tailor.py
r1509 r1524 67 67 dwd.prepareWorkingDirectory(self.source) 68 68 except: 69 self.log.critical('Cannot prepare working directory!' )69 self.log.critical('Cannot prepare working directory!', exc_info=True) 70 70 raise 71 71 … … 81 81 except: 82 82 self.log.critical('Could not import checked out tree in "%s"!', 83 self.rootdir )83 self.rootdir, exc_info=True) 84 84 raise 85 85 … … 101 101 raise 102 102 except: 103 self.log.critical('Unable to get changes for "%s"', self.name) 103 self.log.critical('Unable to get changes for "%s"', 104 self.name, exc_info=True) 104 105 raise 105 106 … … 115 116 raise 116 117 except: 117 self.log.critical('Upstream change application failed') 118 self.log.critical('Upstream change application failed', 119 exc_info=True) 118 120 raise 119 121
Note: See TracChangeset
for help on using the changeset viewer.
