summaryrefslogtreecommitdiff
path: root/templates/python/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'templates/python/context.py')
-rw-r--r--templates/python/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/python/context.py b/templates/python/context.py
index 8e89195..fac49de 100644
--- a/templates/python/context.py
+++ b/templates/python/context.py
@@ -16,7 +16,7 @@ class Context:
return self._vars[key]
def __setitem__(self, key, value):
- logging.info("Context: {}={!r}".format(key, value))
+ logging.debug("Context: key {!r} set to {!r}".format(key, value))
self._vars[key] = value
def __contains__(self, key):