Skip to content

Commit

Permalink
uncomment console error warning
Browse files Browse the repository at this point in the history
Signed-off-by: PatStLouis <patrick.st-louis@opsecid.ca>
  • Loading branch information
PatStLouis committed Dec 11, 2024
1 parent 9c2b1a0 commit 9a4a8db
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ export const secureCredential = async ({
const body = {credential, options};
const {data, result, error} = await issuer.post({json: body});
if(!result || !result.ok) {
// console.warn(
// `initial vc creation failed for ${(result || error)?.requestUrl}`,
// error,
// JSON.stringify(data, null, 2)
// );
console.warn(
`initial vc creation failed for ${(result || error)?.requestUrl}`,
error
);
return null;
}
return data;
Expand Down

0 comments on commit 9a4a8db

Please sign in to comment.