We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b6450 commit d16ab16Copy full SHA for d16ab16
1 file changed
src/utils/proofUtils.ts
@@ -27,7 +27,7 @@ export async function getShortenedUrl(url: string): Promise<string> {
27
})
28
const res = await response.json()
29
if (!response.ok) {
30
- logger.info(`Failed to shorten URL: ${url}, Response: ${JSON.stringify(res)}`);
+ logger.info(`Failed to shorten URL: status=${response.status}`);
31
return url;
32
}
33
const shortenedVerificationUrl = res.result.shortUrl
0 commit comments