Skip to content

Commit

Permalink
Removing logging from reqs.
Browse files Browse the repository at this point in the history
  • Loading branch information
julialawrence committed Oct 23, 2023
1 parent d6438e5 commit 2b7e769
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from geventwebsocket.handler import WebSocketHandler
from geventwebsocket import WebSocketError
import websocket
import logging

# Load secrets from a JSON file
with open("secrets.json") as f:
Expand All @@ -37,7 +36,7 @@

app.config["SECRET_KEY"] = secrets["session_secret"]
app.config["SESSION_TYPE"] = "filesystem"
app.config['LOGGING_LEVEL'] = logging.DEBUG
app.config['LOGGING_LEVEL'] = 10

# Initialize database
init_app(app)
Expand Down
1 change: 0 additions & 1 deletion app/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ idna==3.4
itsdangerous==2.1.2
Jinja2==3.1.2
kubernetes==28.1.0
logging==0.4.9.6
MarkupSafe==2.1.3
oauthlib==3.2.2
pyasn1==0.5.0
Expand Down

0 comments on commit 2b7e769

Please sign in to comment.