From 9725e133a42ac2f06eda6866f6120c1a2c676ca9 Mon Sep 17 00:00:00 2001 From: Ramprasad Date: Mon, 6 Jan 2025 10:32:51 +0530 Subject: [PATCH] helper console remove --- src/helper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helper.ts b/src/helper.ts index 2ccd95b..224a7aa 100644 --- a/src/helper.ts +++ b/src/helper.ts @@ -8,7 +8,7 @@ export function getSecsFromDates(date: Date): number { // Convert to seconds const differenceInSeconds = differenceInMs / 1000; - console.log(`Difference in seconds: ${differenceInSeconds}`); + // console.log(`Difference in seconds: ${differenceInSeconds}`); return Math.floor(differenceInSeconds); } @@ -18,7 +18,7 @@ export async function saveCallLogs(callLog: { time: number; }) { const { from, to, time } = callLog; - console.log("saveCallLogs", callLog); + // console.log("saveCallLogs", callLog); try { const res = await fetch( "https://multiplyyapi.convexsol.com/Investor/CreateCallLogs",