---
title: "Set the Level"
description: "The level - similar to logging levels - is generally added by default based on the integration. You can also override it within an event."
url: https://docs.sentry.io/platforms/react-native/usage/set-level/
---

# Set the Level | Sentry for React Native

The level - similar to logging levels - is generally added by default based on the integration. You can also override it within an event.

To set the level out of scope, you can call `captureMessage()` per event:

```javascript
Sentry.captureMessage("this is a debug message", "debug");
```

Available levels are `"fatal"`, `"error"`, `"warning"`, `"log"`, `"info"`, and `"debug"`.

To set the level within scope, you can call `setLevel()`:

```javascript
Sentry.getCurrentScope().setLevel("warning");
```

or per event:

```javascript
Sentry.withScope(function (scope) {
  scope.setLevel("info");

  // The exception has the event level set by the scope (info).
  Sentry.captureException(new Error("custom error"));
});

// Outside of withScope, the Event level will have their previous value restored.
// The exception has the event level set (error).
Sentry.captureException(new Error("custom error 2"));
```
