Skip to content

Commit

Permalink
ERE-733 better logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelB committed Oct 15, 2024
1 parent b2da511 commit b2d2efc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,10 @@ static synchronized String extractKVNR(ReadVSDResult readVSDResult) {
new ByteArrayInputStream(readVSDResult.persoenlicheVersichertendaten.value));
UCPersoenlicheVersichertendatenXML patient = (UCPersoenlicheVersichertendatenXML) jaxbContext
.createUnmarshaller().unmarshal(isPersoenlicheVersichertendaten);

return patient.getVersicherter().getVersichertenID();

String versichertenID = patient.getVersicherter().getVersichertenID();
log.fine("VSDM result: "+e+" VersichertenID: " + versichertenID);
return versichertenID;
} else {
String pn = doc.getElementsByTagName("PZ").item(0).getTextContent();
String base64PN = new String(DatatypeConverter.parseBase64Binary(pn));
Expand Down

0 comments on commit b2d2efc

Please sign in to comment.