From f4f38e4b31b995e7f51b383cfd52f810e562832e Mon Sep 17 00:00:00 2001 From: Hongbo Wu Date: Mon, 9 Oct 2023 17:26:03 +0800 Subject: [PATCH] reduce unnecessary logs --- packages/api/src/utils/parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/api/src/utils/parser.ts b/packages/api/src/utils/parser.ts index 2e9eab0da..f8ca6ffa2 100644 --- a/packages/api/src/utils/parser.ts +++ b/packages/api/src/utils/parser.ts @@ -401,7 +401,7 @@ const getJSONLdLinkMetadata = async ( return result } catch (error) { - logger.error(`Unable to get JSONLD link of the article`, error) + logger.error('Unable to get JSONLD link of the article') return result } }