Add network inspection logging mode

This commit is contained in:
NerdNumber9
2019-04-14 10:46:06 -04:00
parent 863e349711
commit bfe67f1cdf
10 changed files with 66 additions and 19 deletions

View File

@@ -183,5 +183,5 @@ object PreferenceKeys {
const val eh_showTransitionPages = "eh_show_transition_pages"
const val eh_detailedLogs = "eh_detailed_logs"
const val eh_logLevel = "eh_log_level"
}

View File

@@ -256,5 +256,5 @@ class PreferencesHelper(val context: Context) {
fun eh_showTransitionPages() = rxPrefs.getBoolean(Keys.eh_showTransitionPages, true)
fun eh_detailedLogs() = rxPrefs.getBoolean(Keys.eh_detailedLogs, false)
fun eh_logLevel() = rxPrefs.getInteger(Keys.eh_logLevel, 0)
}