Skip to content

Commit

Permalink
fix: invalid variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
evanshortiss authored Oct 12, 2023
1 parent 80a4d4c commit b536435
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roshambo-ai/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
handler = logging.StreamHandler()
handler.setFormatter(formatter)
app.logger.addHandler(handler)
app.logger.setLevel(log_level)
application.logger.addHandler(handler)
application.logger.setLevel(log_level)

@application.route('/')
@application.route('/status')
Expand Down

0 comments on commit b536435

Please sign in to comment.