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 72efcef commit 4ee46ecCopy full SHA for 4ee46ec
app/src/main/java/tech/httptoolkit/android/HttpToolkitApplication.kt
@@ -163,9 +163,13 @@ class HttpToolkitApplication : Application() {
163
164
return when {
165
serialized != null -> {
166
+ Log.i(TAG, "Found last proxy config: $serialized")
167
Klaxon().converter(CertificateConverter).parse<ProxyConfig>(serialized)
168
}
- else -> null
169
+ else -> {
170
+ Log.i(TAG, "No proxy config found")
171
+ null
172
+ }
173
174
175
set(proxyConfig) {
0 commit comments