From e1264ce58f7efc8ab30c1b8edbf2743cbe73e77a Mon Sep 17 00:00:00 2001 From: kuhyx <147418882+kuhyx@users.noreply.github.com> Date: Mon, 24 Jun 2024 12:27:52 +0200 Subject: [PATCH] Removed sensitive signal server console log --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 9368f0f..9a5e8a8 100644 --- a/main.py +++ b/main.py @@ -152,7 +152,7 @@ async def scheduled_task(queue): async def listen_to_server(queue): uri = f"ws://localhost:9922/v1/receive/{PHONE_NUMBER}?send_read_receipts=false" async with websockets.connect(uri) as websocket: - print(f"Connected to server at {uri}") + print(f"Connected to signal server") try: async for message in websocket: message_content = extract_message_content(message)