Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

configure root logger #136

Merged
merged 8 commits into from
Nov 26, 2020
Merged

configure root logger #136

merged 8 commits into from
Nov 26, 2020

Conversation

kzidane
Copy link
Member

@kzidane kzidane commented Nov 24, 2020

When instantiating cs50.SQL, logging.basicConfig is called. It adds a handler on the root logger, if one doesn't exist, which causes flask to not add its own default handler, in which case our _formatException isn't used. To replicate:

from cs50 import SQL
from flask import Flask

app = Flask(__name__)
# db = SQL('sqlite:///foo.db')

@app.route('/')
def index():
  raise Exception() # highlighted in yellow
from cs50 import SQL
from flask import Flask

app = Flask(__name__)
db = SQL('sqlite:///foo.db')

@app.route('/')
def index():
  raise Exception() # not highlighted in yellow

There's a couple of ways to fix this. One way is to add a handler to the root logger before flask's app.logger is accessed per https://flask.palletsprojects.com/en/1.1.x/logging/#basic-configuration so that flask doesn't add its own handler. This PR does that by calling logging.basicConfig to add a default handler to the root logger and patches formatException on this handler's formatter. As a result, flask's formatter isn't used, so we don't need to patch its formatException.

@kzidane kzidane requested a review from dmalan November 24, 2020 16:36
@kzidane kzidane changed the title avoid using basicConfig configure root logger Nov 25, 2020
@kzidane
Copy link
Member Author

kzidane commented Nov 25, 2020

Side note, some exception tracebacks are logged by werkzeug's logger as errors (not exceptions), so formatException isn't called for these, resulting in them not being highlighted in yellow. I don't think there's much we can do about this without PR'ing werkzeug.

https://github.com/pallets/werkzeug/blob/master/src/werkzeug/serving.py#L319

Copy link
Member

@dmalan dmalan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, so it occurs to me if we override the root logger, can users still enable/disable just our SQL logging, so they do/don't see parsed SQL queries on the command line? Should we perhaps be overriding the root logger for color-coding but still use our own cs50 logger for SQL query logging?

@kzidane
Copy link
Member Author

kzidane commented Nov 25, 2020

Added separate logger per db0d14a.

dmalan
dmalan previously approved these changes Nov 25, 2020
dmalan
dmalan previously approved these changes Nov 25, 2020
@kzidane kzidane merged commit 4887b5f into develop Nov 26, 2020
@kzidane kzidane deleted the logger branch November 26, 2020 01:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants