1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 01:22:19 +03:00

PLUGINS.md: except not catch

This commit is contained in:
Athanasius 2020-07-30 14:32:12 +01:00
parent 0d55e4f6c9
commit ba09cfd8aa

View File

@ -110,14 +110,14 @@ Then replace `print(...)` statements with one of the following:
try:
...
catch Exception:
except Exception:
# This logs at 'ERROR' level.
# Also automatically includes exception information.
logger.exception('An exception occurred')
try:
...
catch Exception as e:
except Exception as e:
logger.debug('Exception we only note in debug output', exc_info=e)
```