Skip to content

Commit 79079dd

Browse files
committed
Add logs
1 parent 23f4181 commit 79079dd

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

app/src/main/assets/pnv.wasm

196 Bytes
Binary file not shown.

matcher/pnv/dcql.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ MatchCredential(cJSON *credential, cJSON *credential_store)
299299
}
300300
else if (cJSON_Compare(paths, disallow_carriers_paths, cJSON_True) && claim_values != NULL)
301301
{ // If the carrier ID matches any value in the disallow carrier list, then we don't show this option.
302+
printf("Checking for disallowed carriers.\n");
302303
cJSON *candidate_carrier_id = cJSON_GetObjectItem(candidate_claims, "android_carrier_hint");
303304
cJSON *v;
304305
cJSON_ArrayForEach(v, claim_values)
@@ -321,6 +322,7 @@ MatchCredential(cJSON *credential, cJSON *credential_store)
321322
if (exclude_candidate_credential != 0)
322323
{
323324
// Skip this credential
325+
printf("Credential skipped because it was in the disallow list.\n");
324326
}
325327
else if (phone_number_matched == CLAIM_MATCH_YES)
326328
{

matcher/pnv/openid4vp1_0.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ int main()
188188
int openid_main()
189189
#endif
190190
{
191+
printf("Telephony matcher\n");
191192
uint32_t credentials_size;
192193
GetCredentialsSize(&credentials_size);
193194

0 commit comments

Comments
 (0)