From 0165b7569b4acee1699de59c7c6ec1a8b91a7b4f Mon Sep 17 00:00:00 2001 From: Abhinav Date: Sat, 6 Aug 2022 15:55:17 +0530 Subject: [PATCH] remove thumbnail url from logs to prevent memory leak --- src/utils/machineLearning/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/machineLearning/index.ts b/src/utils/machineLearning/index.ts index 42bbe7387..e9a24ada7 100644 --- a/src/utils/machineLearning/index.ts +++ b/src/utils/machineLearning/index.ts @@ -393,7 +393,7 @@ export async function getThumbnailImageBitmap(file: EnteFile, token: string) { token, ML_SYNC_DOWNLOAD_TIMEOUT_MS ); - console.log('[MLService] Got thumbnail: ', file.id.toString(), fileUrl); + console.log('[MLService] Got thumbnail: ', file.id.toString()); const thumbFile = await fetch(fileUrl);