diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-04-11 02:43:35 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-04-11 02:43:35 +0000 |
commit | 903a9cb2d1b5ae836a06867a533ab8708c5e5245 (patch) | |
tree | 1d010ad2264df910017f4bfbd95d3a03110e4b8e | |
parent | 4423a7e1f03c96c0d9dc64af271fb01342a85cfc (diff) | |
download | portage-903a9cb2d1b5ae836a06867a533ab8708c5e5245.tar.gz portage-903a9cb2d1b5ae836a06867a533ab8708c5e5245.tar.bz2 portage-903a9cb2d1b5ae836a06867a533ab8708c5e5245.zip |
Show an error message when deletion of stale cache fails.
svn path=/main/trunk/; revision=13315
-rwxr-xr-x | bin/egencache | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/egencache b/bin/egencache index 89708ad71..4103651d5 100755 --- a/bin/egencache +++ b/bin/egencache @@ -244,8 +244,11 @@ class GenCache(object): del trg_cache[k] except KeyError: pass - except CacheError: + except CacheError, ce: self.returncode |= 1 + writemsg_level( + "%s deleting stale cache: %s\n" % (k, ce), + level=logging.ERROR, noiselevel=-1) if not trg_cache.autocommits: try: |