We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e17b63c commit a5d1cd3Copy full SHA for a5d1cd3
integrations/intercom-conversations/src/conversations.ts
@@ -48,8 +48,6 @@ export async function ingestLastClosedIntercomConversations(context: IntercomRun
48
},
49
);
50
51
- logger.info(`First page of conversation fetched.`);
52
-
53
const tasks: Array<IntercomIntegrationTask> = [];
54
while (pageIndex < maxPages) {
55
pageIndex += 1;
@@ -69,7 +67,6 @@ export async function ingestLastClosedIntercomConversations(context: IntercomRun
69
67
break;
70
68
}
71
72
- logger.info(`Fetching next page ${pageIndex + 1}.`);
73
page = await page.getNextPage();
74
75
0 commit comments