Merge pull request #213 from sfstpala/master

Make it possible to disable the logo by subclassing Config
This commit is contained in:
Eli Uriegas 2017-02-01 23:07:52 -06:00 committed by GitHub
commit 6f0b09509e

View File

@ -413,7 +413,8 @@ class Sanic:
if debug: if debug:
log.setLevel(logging.DEBUG) log.setLevel(logging.DEBUG)
log.debug(self.config.LOGO) if self.config.LOGO is not None:
log.debug(self.config.LOGO)
if run_async: if run_async:
server_settings['run_async'] = True server_settings['run_async'] = True