Skip to content

Commit 182091c

Browse files
Add temporary logging
1 parent 4bac810 commit 182091c

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

app/src/main/kotlin/com/x8bit/bitwarden/data/autofill/util/ViewNodeExtensions.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import androidx.annotation.VisibleForTesting
77
import com.bitwarden.ui.platform.base.util.orNullIfBlank
88
import com.x8bit.bitwarden.data.autofill.model.AutofillHint
99
import com.x8bit.bitwarden.data.autofill.model.AutofillView
10+
import timber.log.Timber
1011

1112
/**
1213
* The default web URI scheme.
@@ -50,6 +51,9 @@ private val AssistStructure.ViewNode.isInputField: Boolean
5051
* it doesn't have a supported hint and isn't an input field, we also return null.
5152
*/
5253
fun AssistStructure.ViewNode.toAutofillView(): AutofillView? {
54+
Timber
55+
.tag("AUTOFILL")
56+
.e("AutofillViewData: $website -- $supportedAutofillHint -- $className -- $idEntry")
5357
val nonNullAutofillId = this.autofillId ?: return null
5458
if (this.supportedAutofillHint == null && !this.isInputField) return null
5559
val autofillOptions = this

0 commit comments

Comments
 (0)