Skip to content

Commit

Permalink
Add the advanced options doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jayohms committed Sep 13, 2023
1 parent 97ce829 commit 44c7af1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/ADVANCED-OPTIONS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Advanced Options

## Enable Debug Logging
During development, you may want to see what `strada-android` is doing behind the scenes. To enable debug logging, call `Strada.config.debugLoggingEnabled = true`. Debug logging should always be disabled in your production app. For example:

```kotlin
if (BuildConfig.DEBUG) {
Strada.config.debugLoggingEnabled = true
}
```

0 comments on commit 44c7af1

Please sign in to comment.