Browse Source

helper console remove

tipoff-server
Ramprasad 4 weeks ago
parent
commit
9725e133a4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/helper.ts

+ 2
- 2
src/helper.ts View File

@ -8,7 +8,7 @@ export function getSecsFromDates(date: Date): number {
// Convert to seconds // Convert to seconds
const differenceInSeconds = differenceInMs / 1000; const differenceInSeconds = differenceInMs / 1000;
console.log(`Difference in seconds: ${differenceInSeconds}`);
// console.log(`Difference in seconds: ${differenceInSeconds}`);
return Math.floor(differenceInSeconds); return Math.floor(differenceInSeconds);
} }
@ -18,7 +18,7 @@ export async function saveCallLogs(callLog: {
time: number; time: number;
}) { }) {
const { from, to, time } = callLog; const { from, to, time } = callLog;
console.log("saveCallLogs", callLog);
// console.log("saveCallLogs", callLog);
try { try {
const res = await fetch( const res = await fetch(
"https://multiplyyapi.convexsol.com/Investor/CreateCallLogs", "https://multiplyyapi.convexsol.com/Investor/CreateCallLogs",


Loading…
Cancel
Save