chrahunt / quicken

Make Python apps faster
MIT License
7 stars 1 forks source link

Normalize logging #61

Closed chrahunt closed 5 years ago

chrahunt commented 5 years ago

Currently logging is configured within the library itself. This isn't a good practice.

We can have a central logging configuration to be used in scripts, cli, and tests, but the setup of that logging should not infect the rest of our application.

Requirements:

For now, don't worry about loading time for the logging module, or anything like request-specific logging (server using the logging configured by the client for the duration of the request handling).