summaryrefslogtreecommitdiff
path: root/morphlib/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/util.py')
-rw-r--r--morphlib/util.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/util.py b/morphlib/util.py
index 8a2cfd71..3d9232d4 100644
--- a/morphlib/util.py
+++ b/morphlib/util.py
@@ -177,7 +177,8 @@ def log_dict_diff(app, cur, pre): # pragma: no cover
dictB = pre
for key in dictA.keys():
if key not in dictB:
- app.status(msg="New environment: %s = %s" % (key, dictA[key]))
+ app.status(msg="New environment: %s = %s" % (key, dictA[key]),
+ chatty=True)
elif dictA[key] != dictB[key]:
app.status(msg= \
"Environment changed: %(key)s = %(valA)s to %(key)s = %(valB)s"