Removes the extra logging message for run

Solves for #456
This commit is contained in:
Eli Uriegas 2017-02-16 21:51:19 -06:00
parent 850446195f
commit ad13529eaa

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,