From ba5363ef43ec00980e00de303f7c68ab5e0d654e Mon Sep 17 00:00:00 2001 From: Jeff Laughlin Date: Fri, 14 Oct 2016 18:50:41 -0400 Subject: [PATCH] add http:// to server info message so it's clickable --- sanic/sanic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sanic/sanic.py b/sanic/sanic.py index ec6c8372..4013413d 100644 --- a/sanic/sanic.py +++ b/sanic/sanic.py @@ -164,7 +164,7 @@ class Sanic: log.debug(self.config.LOGO) # Serve - log.info('Goin\' Fast @ {}:{}'.format(host, port)) + log.info('Goin\' Fast @ http://{}:{}'.format(host, port)) try: serve( @@ -184,4 +184,4 @@ class Sanic: """ This kills the Sanic """ - asyncio.get_event_loop().stop() \ No newline at end of file + asyncio.get_event_loop().stop()