pipeline: remove redundant console.log

This commit is contained in:
Alex Gleason 2023-08-17 18:08:05 -05:00
parent 45abaf14a4
commit 2011ca6e1d
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 0 additions and 2 deletions

View File

@ -10,8 +10,6 @@ import { isRelay, nostrDate } from '@/utils.ts';
* It is idempotent, so it can be called multiple times for the same event. * It is idempotent, so it can be called multiple times for the same event.
*/ */
async function handleEvent(event: Event): Promise<void> { async function handleEvent(event: Event): Promise<void> {
console.info(`firehose: Event<${event.kind}> ${event.id}`);
await Promise.all([ await Promise.all([
trackHashtags(event), trackHashtags(event),
storeEvent(event), storeEvent(event),