From 07adc8d9cb5cf8ee6885ad15632637a7eafd089c Mon Sep 17 00:00:00 2001 From: sgrtye Date: Tue, 19 Dec 2023 16:47:07 +0000 Subject: [PATCH] add starting message --- netguard/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netguard/main.py b/netguard/main.py index b1593ed..1521494 100644 --- a/netguard/main.py +++ b/netguard/main.py @@ -57,6 +57,7 @@ def send_notification(): print(f"Error occured on line {e.__traceback__.tb_lineno}") if __name__ == "__main__": + print(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"), "Net Guard started") schedule.every(NOTIFICATION_INTERVAL_MINS).minutes.do(send_notification) while True: