Skip to content

Commit 1325945

Browse files
PatStLouisBigBlueHat
authored andcommitted
uncomment console error warning
Signed-off-by: PatStLouis <[email protected]>
1 parent 2493c9c commit 1325945

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tests/helpers.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,10 @@ export const secureCredential = async ({
4646
const body = {credential, options};
4747
const {data, result, error} = await issuer.post({json: body});
4848
if(!result || !result.ok) {
49-
// console.warn(
50-
// `initial vc creation failed for ${(result || error)?.requestUrl}`,
51-
// error,
52-
// JSON.stringify(data, null, 2)
53-
// );
49+
console.warn(
50+
`initial vc creation failed for ${(result || error)?.requestUrl}`,
51+
error
52+
);
5453
return null;
5554
}
5655
return data;

0 commit comments

Comments
 (0)