From 3a88533d4adb3fe94ae4c09ba0693d2ab761d8e0 Mon Sep 17 00:00:00 2001 From: Dan Firth Date: Mon, 14 Oct 2013 14:50:06 +0000 Subject: Reduced debug output for environment properties --- morphlib/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- cgit v1.2.1