Skip to content

Commit

Permalink
Merge pull request #66 from rory/method-in-cli-stats
Browse files Browse the repository at this point in the history
Include method name in command line logging
  • Loading branch information
heyman committed Apr 17, 2013
2 parents 0784e61 + 7971220 commit 3de3928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locust/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def __str__(self):
fail_percent = 0

return (" %-" + str(STATS_NAME_WIDTH) + "s %7d %12s %7d %7d %7d | %7d %7.2f") % (
self.name,
self.method + " " + self.name,
self.num_reqs,
"%d(%.2f%%)" % (self.num_failures, fail_percent),
self.avg_response_time,
Expand Down

0 comments on commit 3de3928

Please sign in to comment.