Skip to content

Commit f89c749

Browse files
Add temporary logging
1 parent 5bec5be commit f89c749

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 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,7 @@ 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.tag("AUTOFILL").e("AutofillViewData: $website -- $supportedAutofillHint -- $isFocused")
5355
val nonNullAutofillId = this.autofillId ?: return null
5456
if (this.supportedAutofillHint == null && !this.isInputField) return null
5557
val autofillOptions = this

0 commit comments

Comments
 (0)