Skip to content

Commit 0799638

Browse files
committed
tweaks
1 parent 7c5c706 commit 0799638

File tree

1 file changed

+3
-3
lines changed
  • docs/platforms/python/integrations/loguru

1 file changed

+3
-3
lines changed

docs/platforms/python/integrations/loguru/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ logger.exception("I'm an exception log")
7979
logger.debug("I'm a DEBUG log")
8080
```
8181

82-
- All of the above logs except for the `DEBUG` level message will be sent to Sentry as logs.
83-
- An error event with the message `"I'm an exception log"` will be created..
82+
- All of the above logs except for the `DEBUG`-level message will be sent to Sentry as logs.
83+
- An error event with the message `"I'm an exception log"` will be created.
8484
- `"I'm an INFO log"` will be attached as a breadcrumb to that event.
8585
- `bar` will end up in the `extra` attributes of that event.
8686
- `"I'm an exception log"` will send the current exception from `sys.exc_info()` with the stack trace to Sentry. If there's no exception, the current stack will be attached.
87-
- The debug message `"I'm a DEBUG log"` will not be captured by Sentry. See the [`sentry_logs_level` option](#option) to adjust which levels should be sent to Sentry as logs, and the [`level` option](#option) to do adjust the level for capturing breadcrumbs.
87+
- The debug message `"I'm a DEBUG log"` will not be captured by Sentry. See the [`sentry_logs_level` option](#option) to adjust which log levels should be sent to Sentry as logs, and the [`level` option](#option) to adjust the level for capturing breadcrumbs.
8888

8989

9090
### Ignoring a logger

0 commit comments

Comments
 (0)