From 2de2ea392c381b6cd47bf4a027a4a1209b461f1a Mon Sep 17 00:00:00 2001 From: SushilMallRC Date: Wed, 25 Dec 2024 10:47:24 +0530 Subject: [PATCH] Remove log --- src/adapters/netsuite/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/adapters/netsuite/index.js b/src/adapters/netsuite/index.js index 39cfcb76..24aea5a8 100644 --- a/src/adapters/netsuite/index.js +++ b/src/adapters/netsuite/index.js @@ -393,7 +393,6 @@ async function getCallLog({ user, callLogId, authHeader }) { async function updateCallLog({ user, existingCallLog, authHeader, recordingLink, subject, note, startTime, duration, result }) { try { - console.log({ use, existingCallLog, authHeader, recordingLink, subject, note, startTime, duration, result }); const existingLogId = existingCallLog.thirdPartyLogId; const callLogResponse = await axios.get(`https://${user.hostname.split(".")[0]}.suitetalk.api.netsuite.com/services/rest/record/v1/phonecall/${existingLogId}`, { headers: { 'Authorization': authHeader } }); let messageBody = callLogResponse.data.message;