diff --git docs/core/howto/logger.rst docs/core/howto/logger.rst
index ca7e736..aa462f7 100644
|
|
For example, :api:`twisted.logger.FileLogObserver <FileLogObserver>` will append |
128 | 128 | exceptions.ZeroDivisionError: integer division or modulo by zero |
129 | 129 | |
130 | 130 | Note that this API is meant to capture unexpected and unhandled errors (that is: bugs, which is why tracebacks are preserved). |
131 | | As such, it defaults to logging that the :api:`twisted.logger.LogLevel.critical <critical>` level. |
| 131 | As such, it defaults to logging at the :api:`twisted.logger.LogLevel.critical <critical>` level. |
132 | 132 | It is generally more appropriate to instead use `log.error()` when logging an expected error condition that was appropriately handled by the software. |
133 | 133 | |
134 | 134 | |