diff --git a/docs/platforms/apple/common/usage/index.mdx b/docs/platforms/apple/common/usage/index.mdx index 59f7bda69588c..43b6833dd8887 100644 --- a/docs/platforms/apple/common/usage/index.mdx +++ b/docs/platforms/apple/common/usage/index.mdx @@ -17,18 +17,18 @@ Key terms: -The most common form of capturing is to capture errors. What can be captured as an error varies by platform. In general, if you have something that looks like an exception, it can be captured. For some SDKs, you can also omit the argument to and Sentry will attempt to capture the current exception. It is also useful for manual reporting of errors or messages to Sentry. +## Capturing Messages -While capturing an event, you can also record the breadcrumbs that lead up to that event. Breadcrumbs are different from events: they will not create an event in Sentry, but will be buffered until the next event is sent. Learn more about breadcrumbs in our Breadcrumbs documentation. +The simplest operation is to capture a bare message: textual information that should be sent to Sentry. Typically, our SDKs won't automatically capture messages, but you can capture them manually. -## Capturing Errors +Messages show up as issues on your issue stream, with the message as the issue name. - + -## Capturing Messages +## Capturing Errors -Another common operation is to capture a bare message. A message is textual information that should be sent to Sentry. Typically, our SDKs don't automatically capture messages, but you can capture them manually. +The most common usage of the Apple SDKs is to capture errors. In general, if you have something that looks like an exception, it can be captured, though this varies by platform. For some SDKs, you can also omit the argument to and Sentry will attempt to capture the current exception. This is also useful for manual reporting of errors or messages to Sentry. -Messages show up as issues on your issue stream, with the message as the issue name. +While capturing an event, you can also record the breadcrumbs that lead up to that event. Breadcrumbs are different from events: they will not create an event in Sentry, but will be buffered until the next event is sent. Learn more in our Breadcrumbs documentation. - +