parent
d077bbf8c8
commit
6e13955b08
|
@ -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.
|
||||
* Maybe this is better?
|
||||
* 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?
|
|
@ -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)
|
Loading…
Reference in New Issue