Let's see if that will log it.

I'm not really sure.
This commit is contained in:
Jigme Datse Yli-Rasku 2024-05-29 23:53:45 -07:00
parent d077bbf8c8
commit 6e13955b08
2 changed files with 3 additions and 2 deletions

View File

@ -33,3 +33,4 @@ This is our current version trying to communicate between courier and mailman3.
* Maybe this is better?
* Catch exception, log based on that?
* Hm, go with bare "Exception"... The catch wasn't what was failing.
* Let's try that instead?

View File

@ -67,6 +67,6 @@ try:
raise
except Exception as e:
logger.error('lmtp error')
logger.error(traceback.format_exc())
logger.exception('Got exception Traceback:')
logger.error('lmtp failed errorno: %s, message: %s', e.errno, e.strerror)
exit(100)