From 61ad76301d1dd8d37ef4e6b172846cfb2eb9a547 Mon Sep 17 00:00:00 2001 From: khushal Date: Wed, 22 Jan 2025 14:32:58 +0530 Subject: [PATCH] (20250122) Minor debugging message change. --- background/finstitutions/trading/tick_save.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background/finstitutions/trading/tick_save.py b/background/finstitutions/trading/tick_save.py index 9e3072a..a269fbb 100644 --- a/background/finstitutions/trading/tick_save.py +++ b/background/finstitutions/trading/tick_save.py @@ -168,7 +168,7 @@ async def save_ticks(ticks: List[dict]): ticks_since_telegram += len(ticks) ticks_threshold = 1_00_000 if ticks_since_telegram > ticks_threshold: - await send_telegram(message = f"Saved {ticks_since_telegram:,} tick(s).") + await send_telegram(message = f"*Tick-Save Alert*\nSaved {ticks_since_telegram:,} tick(s).") ticks_since_telegram = 0