From f2b2f5200ddef6bbf3e7111d8595ee3957e676e7 Mon Sep 17 00:00:00 2001 From: Vel-San <13340023+Vel-San@users.noreply.github.com> Date: Thu, 22 Feb 2024 21:39:54 +0100 Subject: [PATCH] chore(Logs): Added notifier for headless run at the start of the script --- wbmbot_v2/helpers/constants.py | 2 +- wbmbot_v2/main.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/wbmbot_v2/helpers/constants.py b/wbmbot_v2/helpers/constants.py index 44c9a9b..9b3e711 100644 --- a/wbmbot_v2/helpers/constants.py +++ b/wbmbot_v2/helpers/constants.py @@ -2,7 +2,7 @@ import os # Bot version (MAJOR.MINOR.PATCH) -bot_version = "1.0.0" +bot_version = "1.0.1" # Today today = dt.date.today() diff --git a/wbmbot_v2/main.py b/wbmbot_v2/main.py index 2d84fbe..a59092a 100755 --- a/wbmbot_v2/main.py +++ b/wbmbot_v2/main.py @@ -61,7 +61,11 @@ def parse_args(): LOG = color_me.create_logger() # Create ChromeDriver - LOG.info(color_me.cyan(f"Initializing Script (v{constants.bot_version}) 🚀")) + LOG.info( + color_me.cyan( + f"Initializing Script (v{constants.bot_version}) (Headless? {args.args.headless}) 🚀" + ) + ) LOG.info(color_me.cyan("Checking for internet connection 🔎")) while True: if not misc_operations.check_internet_connection():