From 24031f5add4d1fb8be0b406b934e0f106f1b7e71 Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Mon, 8 Jan 2024 12:24:08 +0100 Subject: [PATCH] Remove callstack from missing_extra logs, as it was confusing for some people. --- locust_plugins/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/locust_plugins/__init__.py b/locust_plugins/__init__.py index 47f5a43..c6615d9 100644 --- a/locust_plugins/__init__.py +++ b/locust_plugins/__init__.py @@ -258,7 +258,6 @@ def do_checks(environment, **_kw): def missing_extra(package, extra): - traceback.print_exc() logging.error( f"'{package}' is not installed by default, you need to install it using 'pip install locust-plugins[{extra}]'" )