Merge pull request #457 from seemethere/remove_double_logging_message

Removes the extra logging message for run
This commit is contained in:
Eli Uriegas 2017-02-16 21:53:25 -06:00 committed by GitHub
commit 36c1122d20

View File

@ -485,12 +485,6 @@ class Sanic:
protocol=protocol, backlog=backlog, stop_event=stop_event, protocol=protocol, backlog=backlog, stop_event=stop_event,
run_async=True) run_async=True)
# Serve
proto = "http"
if ssl is not None:
proto = "https"
log.info('Goin\' Fast @ {}://{}:{}'.format(proto, host, port))
return await serve(**server_settings) return await serve(**server_settings)
def _helper(self, host="127.0.0.1", port=8000, debug=False, def _helper(self, host="127.0.0.1", port=8000, debug=False,