summaryrefslogtreecommitdiff
path: root/morphlib/buildcommand.py
diff options
context:
space:
mode:
authorDaniel Firth <dan.firth@codethink.co.uk>2013-10-28 15:24:30 +0000
committerDaniel Firth <dan.firth@codethink.co.uk>2013-10-28 15:24:30 +0000
commitc6b5103bf5e7cea79363311313886e27d949e39f (patch)
tree3b91ea708914a404d2dbd285e587624c8fb8c7f7 /morphlib/buildcommand.py
parent89c110e30c58cc9b2da8cb7d5631a31cb1d3cc12 (diff)
downloadmorph-c6b5103bf5e7cea79363311313886e27d949e39f.tar.gz
Tidy up debug output of morph build
Diffstat (limited to 'morphlib/buildcommand.py')
-rw-r--r--morphlib/buildcommand.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/morphlib/buildcommand.py b/morphlib/buildcommand.py
index b587aa9a..cbcc39fd 100644
--- a/morphlib/buildcommand.py
+++ b/morphlib/buildcommand.py
@@ -395,8 +395,10 @@ class BuildCommand(object):
if artifact.source.build_mode == 'bootstrap':
if not self.in_same_stratum(artifact, target_artifact):
continue
- self.app.status(msg='Installing chunk %(chunk_name)s',
- chunk_name=artifact.name)
+ self.app.status(msg='Installing chunk %(chunk_name)s '
+ 'from cache %(cache)s',
+ chunk_name=artifact.name,
+ cache=artifact.cache_key[:7])
handle = self.lac.get(artifact)
staging_area.install_artifact(handle)