diff --git a/scraper/main.py b/scraper/main.py index ac8ee66..4a10469 100644 --- a/scraper/main.py +++ b/scraper/main.py @@ -12,7 +12,7 @@ async def relay_websockets(input_websocket, output_websocket, kinds, sub_id): event = json.loads(await input_websocket.recv()) try: if(event[0] == "EVENT"): - print("Got event: ", event) + print("Got event: ", event[2]['id']) # Forward the event to output websocket await output_websocket.send(json.dumps(["EVENT", sub_id, event[2]])) elif(event[0] == "EOSE"):