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 3cd3ff7 commit 668e8eeCopy full SHA for 668e8ee
CONTRIBUTING.md
@@ -461,6 +461,17 @@ output to a file, and grep through it.
461
./gradlew --debug 2>&1 > debugging-the-build.log
462
```
463
464
+### Getting More Output
465
+
466
+The Amplify Android library emits logs while it is running on a device
467
+or emulator. By default, debug and verbose logs are not output.
468
+However, you can change the log threshold at runtime, by explicitly
469
+configuring a logging plugin:
470
+```kotlin
471
+Amplify.addPlugin(AndroidLoggingPlugin(LogLevel.VERBOSE))
472
+// ... Add more plugins only *after* setting the log plugin.
473
+```
474
475
### Failing Instrumentation Tests
476
477
If a single test is failing, run only that test, to isolate it. You may also
0 commit comments