Skip to content

Commit

Permalink
atproto_firehose.subscribe: don't log #handle, #tombstone
Browse files Browse the repository at this point in the history
  • Loading branch information
snarfed committed Jan 6, 2025
1 parent d95724f commit d957fe0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion atproto_firehose.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ def subscribe():
t = header.get('t')

if t not in ('#commit', '#account', '#identity'):
logger.info(f'Got {t} from relay')
if t not in ('#handle', '#tombstone'):
logger.info(f'Got {t} from relay')
continue

# parse payload
Expand Down

0 comments on commit d957fe0

Please sign in to comment.