summaryrefslogtreecommitdiff
path: root/alot/helper.py
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-02-04 20:26:44 +0900
committerPatrick Totzke <patricktotzke@gmail.com>2019-02-06 13:38:16 +0000
commit0a55181562e931abf050124b600ce835dfce8f01 (patch)
tree80ebcf855c9e7858ccdd05ff6559456c627f3c18 /alot/helper.py
parentfff58de316f31267923cad28670ce6c033e93c83 (diff)
addressbook: add logging statements
to help troubleshoot problems
Diffstat (limited to 'alot/helper.py')
-rw-r--r--alot/helper.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/helper.py b/alot/helper.py
index 9992e6c8..94ea108c 100644
--- a/alot/helper.py
+++ b/alot/helper.py
@@ -276,6 +276,8 @@ def call_cmd(cmdlist, stdin=None):
if isinstance(stdin, str):
stdin = stdin.encode(termenc)
try:
+
+ logging.debug("Calling %s" % cmdlist)
proc = subprocess.Popen(
cmdlist,
stdout=subprocess.PIPE,