From edadee229f164a80b10770a7ee563a4ee8930f36 Mon Sep 17 00:00:00 2001 From: Evan Shortiss Date: Thu, 12 Oct 2023 10:26:49 -0700 Subject: [PATCH] chore: remove commented code --- roshambo-ai/wsgi.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/roshambo-ai/wsgi.py b/roshambo-ai/wsgi.py index 647ad15..d7647cf 100644 --- a/roshambo-ai/wsgi.py +++ b/roshambo-ai/wsgi.py @@ -8,11 +8,6 @@ application = Flask(__name__) log_level = os.getenv("LOG_LEVEL", "INFO").upper() - -# formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') -# handler = logging.StreamHandler() -# handler.setFormatter(formatter) -# application.logger.addHandler(handler) application.logger.setLevel(log_level) @application.route('/')