From b7e6eeebd4a6982ed60997bb1e5762a388ffa081 Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 26 Jul 2023 00:05:33 +0300 Subject: [PATCH] add handy print statements to docker --- files/routes/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/files/routes/__init__.py b/files/routes/__init__.py index 825a7c8132..0fae80d360 100644 --- a/files/routes/__init__.py +++ b/files/routes/__init__.py @@ -52,4 +52,6 @@ if FEATURES['PING_GROUPS']: if IS_LOCALHOST: from files.helpers.cron import cron_fn + print('Starting cron tasks!', flush=True) gevent.spawn(cron_fn, True, False) + print('Finishing cron tasks!', flush=True)