Skip to content

Commit f2b2f52

Browse files
committed
chore(Logs): Added notifier for headless run at the start of the script
1 parent 3d00cd0 commit f2b2f52

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

wbmbot_v2/helpers/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33

44
# Bot version (MAJOR.MINOR.PATCH)
5-
bot_version = "1.0.0"
5+
bot_version = "1.0.1"
66

77
# Today
88
today = dt.date.today()

wbmbot_v2/main.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ def parse_args():
6161
LOG = color_me.create_logger()
6262

6363
# Create ChromeDriver
64-
LOG.info(color_me.cyan(f"Initializing Script (v{constants.bot_version}) 🚀"))
64+
LOG.info(
65+
color_me.cyan(
66+
f"Initializing Script (v{constants.bot_version}) (Headless? {args.args.headless}) 🚀"
67+
)
68+
)
6569
LOG.info(color_me.cyan("Checking for internet connection 🔎"))
6670
while True:
6771
if not misc_operations.check_internet_connection():

0 commit comments

Comments
 (0)