We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
captureMessage
1 parent 47a010b commit 960e7e7Copy full SHA for 960e7e7
platform-includes/capture-message/javascript.mdx
@@ -1,3 +1,7 @@
1
```javascript
2
Sentry.captureMessage("Something went wrong");
3
+
4
+// optionally specify the severity level:
5
+// "fatal" | "error" | "warning" | "log" | "debug" | "info" (default)
6
+Sentry.captureMessage("Something went wrong", "warning");
7
```
0 commit comments