Update README.md

This commit is contained in:
George Mihaila
2020-04-24 11:09:47 -05:00
committed by GitHub
parent 879de45de2
commit 4c2b25390a

View File

@@ -40,7 +40,7 @@ logger = custom_logger(file_log="file.log", filemode='w')
## Snippets:
### Log
### assertion log
```python
try:
assert 1 == 0
@@ -48,3 +48,4 @@ except AssertionError as err:
logger.exception("My assert failed :( ")
raise err
```