summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-25 08:52:21 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-25 08:52:21 +0200
commit2f8b32787a0cb021e45d84be457897cbe67a8d42 (patch)
tree924639a759cce43a1c54fbcb44556a1d5c10d9f3
parent2ee226b0dc771900c580cf2a9213dd24466fe254 (diff)
downloadgemato-2f8b32787a0cb021e45d84be457897cbe67a8d42.tar.gz
openpgp: Remove debug-all, it has too broad consequences
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--gemato/openpgp.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/gemato/openpgp.py b/gemato/openpgp.py
index 7f7ecd8..44f3713 100644
--- a/gemato/openpgp.py
+++ b/gemato/openpgp.py
@@ -203,16 +203,12 @@ honor-http-proxy
# enable debugging, in case we needed it
log-file {debug_file}
debug-level guru
-debug-all
'''.format(debug_file=os.path.join(self._home, 'dirmngr.log')))
with open(os.path.join(self._home, 'gpg.conf'), 'w') as f:
f.write('''# autogenerated by gemato
# we are using an isolated keyring, so always trust our keys
trust-model always
-
-# enable debugging, in case we needed it
-debug-all
'''.format(debug_file=os.path.join(self._home, 'gpg.log')))
with open(os.path.join(self._home, 'gpg-agent.conf'), 'w') as f:
f.write('''# autogenerated by gemato
@@ -223,7 +219,6 @@ disable-scdaemon
# enable debugging, in case we needed it
log-file {debug_file}
debug-level guru
-debug-all
'''.format(debug_file=os.path.join(self._home, 'gpg-agent.log')))
def __exit__(self, exc_type, exc_value, exc_cb):