From 7cef173ef3d285b27ffd7d3e00af5ed09a08a717 Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Sat, 28 Sep 2024 21:59:12 +0200 Subject: [PATCH] lower log level for unnecessary --autostart argument --- locust/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locust/main.py b/locust/main.py index b04df04b07..cdb09db194 100644 --- a/locust/main.py +++ b/locust/main.py @@ -517,10 +517,10 @@ def ensure_user_class_name(config): web_ui = None if options.autostart and options.headless: - logger.warning("The --autostart argument is implied by --headless, no need to set both.") + logger.info("The --autostart argument is implied by --headless, no need to set both.") if options.autostart and options.worker: - logger.warning("The --autostart argument has no meaning on a worker.") + logger.info("The --autostart argument has no meaning on a worker.") def assign_equal_weights(environment, **kwargs): environment.assign_equal_weights()