Skip to content

Commit

Permalink
Remove sensitive print.
Browse files Browse the repository at this point in the history
  • Loading branch information
yspreen committed Apr 23, 2021
1 parent 429ccd7 commit f6c23ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PatientScannerDemo/Models/HCert.swift
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ struct HCert {
}
#endif
print(header)
print(body)
// print(body)
return true
}

Expand All @@ -123,7 +123,7 @@ struct HCert {
let bodyStr = CBOR.payload(from: cborData)?.toString() ?? "{}"
header = JSON(parseJSON: headerStr)
var body = JSON(parseJSON: bodyStr)
print(body)
// print(body)
if body[ClaimKey.HCERT.rawValue].exists() {
body = body[ClaimKey.HCERT.rawValue]
}
Expand Down

0 comments on commit f6c23ea

Please sign in to comment.