-
Notifications
You must be signed in to change notification settings - Fork 270
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
Conversation
Side note, some exception tracebacks are logged by https://github.com/pallets/werkzeug/blob/master/src/werkzeug/serving.py#L319 |
There was a problem hiding this 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?
Added separate logger per db0d14a. |
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: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 callinglogging.basicConfig
to add a default handler to the root logger and patchesformatException
on this handler's formatter. As a result, flask's formatter isn't used, so we don't need to patch itsformatException
.