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

@ -32,4 +32,5 @@ This is our current version trying to communicate between courier and mailman3.
* Logging error (I hope), when lmtp fails to be created. * Logging error (I hope), when lmtp fails to be created.
* Maybe this is better? * Maybe this is better?
* Catch exception, log based on that? * Catch exception, log based on that?
* Hm, go with bare "Exception"... The catch wasn't what was failing. * 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 raise
except Exception as e: except Exception as e:
logger.error('lmtp error') 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) logger.error('lmtp failed errorno: %s, message: %s', e.errno, e.strerror)
exit(100) exit(100)