-
Notifications
You must be signed in to change notification settings - Fork 192
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
Add logging capabilities to Flask #245
Comments
+1. I've used http://flask-debugtoolbar.readthedocs.org/en/latest/ locally for logging purposes -- you can do something like https://github.com/mgood/flask-debugtoolbar/blob/master/example/example.py#L33 and the toolbar will show the logs. But having some "real" logging to file would be a great contribution. |
Things to log. Missmatch with the DB.
see discussion in #700 |
Things to log. User login error. |
I would recommend we create a file that we rotate once a day, and that we send automatically by email with a cron. This to avoid to have a dependency on queuing jobs inside flask. Also we currently have no need for live debugging info. We can revisit this a bit later. The log file can be sent to a couple of persons maybe @miketaylr and myself. |
in #704 @miketaylr said:
|
Thanks Karl. |
It would be good to have logging capabilities for the different calls of the program, that would help us have a better understanding on where we do wrong things and where to solve redundancies.
The text was updated successfully, but these errors were encountered: