Skip to content

Commit

Permalink
Merge pull request #320 from sr-gi/multisocketserver-log
Browse files Browse the repository at this point in the history
Updates MultiSocketServer to use log_info instead of print
  • Loading branch information
mmerickel committed Oct 16, 2020
2 parents c2980c1 + 42a8e0d commit 4a862fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/waitress/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def print_listen(self, format_str): # pragma: nocover
if ":" in l[0]:
l[0] = "[{}]".format(l[0])

print(format_str.format(*l))
self.log_info(format_str.format(*l))

def run(self):
try:
Expand Down

0 comments on commit 4a862fa

Please sign in to comment.