You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but I think that by default the library should not alter the loggers and they should instead be set in cli.py, allowing the CLI experience to be nice but giving library users the flexibility to set things how they wish.
The text was updated successfully, but these errors were encountered:
Server.serve
callsServer._setup_logging
which explicitly sets the logging level toINFO
and hooks up the tornado logger to the output too.As a user of a library, I should be able to be in control about what gets printed to the screen of my app and what dependencies of mine log to where.
I can fix this by monkey-patching the code with:
but I think that by default the library should not alter the loggers and they should instead be set in
cli.py
, allowing the CLI experience to be nice but giving library users the flexibility to set things how they wish.The text was updated successfully, but these errors were encountered: