Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 261e75fc authored by Felipe Leme's avatar Felipe Leme
Browse files

Changed verbosity of log message shown when context is not autofillable.

Test: echo 'In TreeHugger we trust!'
Bug: 121063774

Change-Id: If2c6b3a93563e55a1d41d5ff294018ee2c19bbf3
parent baa9c5fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1471,8 +1471,8 @@ public final class AutofillManager {
    // Note: don't need to use locked suffix because mContext is final.
    private AutofillClient getClient() {
        final AutofillClient client = mContext.getAutofillClient();
        if (client == null && sDebug) {
            Log.d(TAG, "No AutofillClient for " + mContext.getPackageName() + " on context "
        if (client == null && sVerbose) {
            Log.v(TAG, "No AutofillClient for " + mContext.getPackageName() + " on context "
                    + mContext);
        }
        return client;