From a0d2e74115eef78da8dafb9ffbad9d97844078ea Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Sun, 19 Jan 2025 11:51:00 +0300 Subject: [PATCH] Update check_logs function in checker.py to modify subscription status reporting. Changed the return message from "Subscription" to "Sync" for improved clarity in log analysis. This adjustment enhances the understanding of the subscription state in the context of log processing. --- checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checker.py b/checker.py index 9de8376..0ac3658 100644 --- a/checker.py +++ b/checker.py @@ -148,7 +148,7 @@ def check_logs(logger): if last_subscription_id: logger.info(f"Subscription: {last_subscription_id}") - return {"status": f"Subscription: {last_subscription_id}"} + return {"status": f"Sync: {last_subscription_id}"} logger.info("Not found subscription") return {"status": "Idle"}