Skip to content

Commit

Permalink
fix log format
Browse files Browse the repository at this point in the history
  • Loading branch information
hjacobs committed Jul 28, 2015
1 parent a079200 commit 037bd6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connexion/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def common_error_handler(e: werkzeug.exceptions.HTTPException):
return problem(title=e.name, detail=e.description, status=e.code)

def run(self):
logger.debug('Starting {} HTTP server..', self.server, extra=vars(self))
logger.debug('Starting {} HTTP server..'.format(self.server), extra=vars(self))
if self.server == 'flask':
self.app.run('0.0.0.0', port=self.port, debug=self.debug)
elif self.server == 'tornado':
Expand Down

0 comments on commit 037bd6c

Please sign in to comment.