Skip to content

Commit

Permalink
Bump logging deprecation of Python 3.8 from info to warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Feb 4, 2024
1 parent b0662d6 commit 551947c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locust/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def kill_workers(children):
)

if sys.version_info < (3, 9):
logger.info("Python 3.8 support is deprecated and will be removed soon")
logger.warning("Python 3.8 support is deprecated and will be removed soon")

# create locust Environment
locustfile_path = None if not locustfile else os.path.basename(locustfile)
Expand Down

0 comments on commit 551947c

Please sign in to comment.