Skip to content

Commit 0f26cea

Browse files
committed
Call toString on id
1 parent fbc7470 commit 0f26cea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/uid2/shared/secure/NitroCoreAttestationService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private AttestationResult attestInternal(byte[] publicKey, AttestationRequest aR
6767
return new AttestationResult(AttestationFailure.FORBIDDEN_ENCLAVE);
6868
}
6969

70-
LOGGER.info("Successfully attested aws-nitro against registered enclaves, enclave id: " + id);
70+
LOGGER.info("Successfully attested aws-nitro against registered enclaves, enclave id: " + id.toString());
7171
return new AttestationResult(aDoc.getPublicKey(), id.toString());
7272
}
7373

0 commit comments

Comments
 (0)