Skip to content

Commit 4ee46ec

Browse files
committed
Add a little extra logging during startup
1 parent 72efcef commit 4ee46ec

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/src/main/java/tech/httptoolkit/android/HttpToolkitApplication.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,13 @@ class HttpToolkitApplication : Application() {
163163

164164
return when {
165165
serialized != null -> {
166+
Log.i(TAG, "Found last proxy config: $serialized")
166167
Klaxon().converter(CertificateConverter).parse<ProxyConfig>(serialized)
167168
}
168-
else -> null
169+
else -> {
170+
Log.i(TAG, "No proxy config found")
171+
null
172+
}
169173
}
170174
}
171175
set(proxyConfig) {

0 commit comments

Comments
 (0)