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:
parent
0d55e4f6c9
commit
ba09cfd8aa
@ -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)
|
||||
```
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user