From ad13529eaa7da2fc95c06a67dba084217a9d8a07 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 16 Feb 2017 21:51:19 -0600 Subject: [PATCH] Removes the extra logging message for run Solves for #456 --- sanic/app.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sanic/app.py b/sanic/app.py index 46bab075..5a36fa72 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -485,12 +485,6 @@ class Sanic: protocol=protocol, backlog=backlog, stop_event=stop_event, 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) def _helper(self, host="127.0.0.1", port=8000, debug=False,