Skip to content

Commit 335c3e4

Browse files
committed
fix: log switch using default.json (#2029)
The log value was hardcoded to true but should read the JSON config instead
1 parent f49c8da commit 335c3e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ android {
230230
internal_features : "false"]
231231

232232
buildConfigField 'boolean', 'DEVELOPER_FEATURES_ENABLED', 'false'
233-
buildConfigField 'boolean', 'LOGGING_ENABLED', "true"
233+
buildConfigField 'boolean', 'LOGGING_ENABLED', "$config.loggingEnabled"
234234
buildConfigField 'boolean', 'SAFE_LOGGING', 'true'
235235
}
236236

0 commit comments

Comments
 (0)