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.
1 parent ecdd0ed commit 8b0aac7Copy full SHA for 8b0aac7
platform-includes/logs/setup/android.mdx
@@ -1,5 +1,9 @@
1
To enable logging, you need to initialize the SDK with the `logs.enabled` option set to `true`.
2
3
+```XML {filename:AndroidManifest.xml}
4
+<meta-data android:name="io.sentry.logs.enabled" android:value="true" />
5
+```
6
+
7
```java {tabTitle: Java} {10}
8
import io.sentry.SentryLevel;
9
import io.sentry.android.core.SentryAndroid;
@@ -32,7 +36,3 @@ class MyApplication : Application() {
32
36
}
33
37
34
38
```
35
-
-```XML {filename:AndroidManifest.xml}
-<meta-data android:name="io.sentry.logs.enabled" android:value="true" />
-```
0 commit comments