# Disabling/Enabling Bug Reporting

You can turn bug reporting (and its invocation/prompt options) on or off at runtime without reinitializing the SDK.

{% code title="Kotlin" %}

```kotlin
// Disable bug reporting
BugReportingKmp.setEnabled(false)

// Enable bug reporting
BugReportingKmp.setEnabled(true)
```

{% endcode %}

When disabled, manual invocation and prompt options for bug and feedback are disabled. Other features (e.g. Crash Reporting, APM) are controlled separately.
