Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Removed some logging #24788

Merged
merged 7 commits into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions plugin-server/src/cdp/cdp-consumers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,6 @@ abstract class CdpConsumerBase {
await runInstrumentedFunction({
statsKey: `cdpConsumer.handleEachBatch.produceResults`,
func: async () => {
console.log('Processing invocations results', results.length)

await Promise.all(
results.map(async (result) => {
// Tricky: We want to pull all the logs out as we don't want them to be passed around to any subsequent functions
Expand Down Expand Up @@ -635,12 +633,6 @@ export class CdpFunctionCallbackConsumer extends CdpConsumerBase {
})
)

invocations.forEach((item) => {
if (!item.hogFunction?.id) {
console.error('No hog function id', item)
}
})

return invocations
},
})
Expand Down
Loading