From 9c2782d8d469d1e2fbd1e1abd741014c66b45283 Mon Sep 17 00:00:00 2001 From: Rahul Goyal Date: Fri, 22 Nov 2024 08:32:06 +0530 Subject: [PATCH] Updated error message --- models/profileDiffs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/profileDiffs.js b/models/profileDiffs.js index f2e8895aa3..34b64e3402 100644 --- a/models/profileDiffs.js +++ b/models/profileDiffs.js @@ -152,7 +152,7 @@ const fetchProfileDiffUnobfuscated = async (profileDiffId) => { ...profileDiffData, }; } catch (err) { - logger.error("Error retrieving profile Diff", err); + logger.error("Error retrieving Unobfuscated profile Diff", err); throw err; } };