File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/performance/locustfiles Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1414from common .base_user import OsparcWebUserBase
1515from locust import events , task
1616
17- logging . basicConfig ( level = logging .INFO )
17+ _logger = logging .getLogger ( __name__ )
1818
1919# NOTE: 'import locust_plugins' is necessary to use --check-fail-ratio
2020# this assert is added to avoid that pycln pre-commit hook does not
@@ -41,8 +41,8 @@ def _(parser) -> None:
4141
4242@events .init .add_listener
4343def _ (environment , ** _kwargs ) -> None :
44- logging .info ("Testing endpoint: %s" , environment .parsed_options .endpoint )
45- logging .info ("Requires login: %s" , environment .parsed_options .requires_login )
44+ _logger .info ("Testing endpoint: %s" , environment .parsed_options .endpoint )
45+ _logger .info ("Requires login: %s" , environment .parsed_options .requires_login )
4646
4747
4848class WebApiUser (OsparcWebUserBase ):
You can’t perform that action at this time.
0 commit comments