1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-12-20 16:41:13 -05:00

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.
This commit is contained in:
Hemna 2021-09-02 10:03:43 -04:00
parent 1ea6c05dec
commit 558710d348

View File

@ -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"]