Changeset ferringb%2Fpkgcore-dev,3510
- Timestamp:
- 06/29/08 12:38:25 (8 weeks ago)
- Author:
- Brian Harring <ferringb@…>
- Message:
-
add in some debug msgs for mtime caching
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r3509
|
r3510
|
|
| 66 | 66 | try: |
| 67 | 67 | f = None |
| | 68 | logger.debug("attempting to update mtime cache at %r", (location,)) |
| 68 | 69 | try: |
| 69 | 70 | if not ensure_dirs(os.path.dirname(location), |
| … |
… |
|
| 97 | 98 | def _read_mtime_cache(location): |
| 98 | 99 | try: |
| | 100 | logger.debug("reading mtime cache at %r", (location,)) |
| 99 | 101 | d = {} |
| 100 | 102 | for k, v in read_dict(readlines(location), splitter=None, |
| … |
… |
|
| 110 | 112 | if e.errno != errno.ENOENT: |
| 111 | 113 | raise |
| | 114 | logger.debug("failed reading mtime cache at %r", (location,)) |
| 112 | 115 | return {} |
| 113 | 116 | |