From 558710d348fac8f3cb3f90e6326c0e163a7b0dda Mon Sep 17 00:00:00 2001 From: Hemna Date: Thu, 2 Sep 2021 10:03:43 -0400 Subject: [PATCH] Remove some noisy trace in email plugin This removes the trace decorators from the email login functions. They have been stable for a while now. --- aprsd/plugins/email.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/aprsd/plugins/email.py b/aprsd/plugins/email.py index d52212e..7784c11 100644 --- a/aprsd/plugins/email.py +++ b/aprsd/plugins/email.py @@ -143,7 +143,6 @@ class EmailPlugin(plugin.APRSDRegexCommandPluginBase): return reply -@trace.trace def _imap_connect(): global CONFIG imap_port = CONFIG["aprsd"]["email"]["imap"].get("port", 143) @@ -184,7 +183,6 @@ def _imap_connect(): return server -@trace.trace def _smtp_connect(): host = CONFIG["aprsd"]["email"]["smtp"]["host"] smtp_port = CONFIG["aprsd"]["email"]["smtp"]["port"]