diff --git a/locust/runners.py b/locust/runners.py index b87aa055fe..4dd9a3a0e6 100644 --- a/locust/runners.py +++ b/locust/runners.py @@ -184,10 +184,10 @@ def spawn(): while True: if not bucket: logger.info( - "All users spawned: %s (%i already running)" + "All users spawned: %s (%i total running)" % ( ", ".join(["%s: %d" % (name, count) for name, count in occurrence_count.items()]), - existing_count, + len(self.user_greenlets), ) ) self.environment.events.spawning_complete.fire(user_count=len(self.user_greenlets))