Skip to content

nathancahill/Flask-Logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-Logging

Filter certain requests from the Flask log. Useful during development when requests fill up with /static/ URLs. Not for use in production, Flask-Logging monkey patches the werkzeug logging function.

Installation

pip install flask-logging

Usage

from flask_logging import Filter
filter = Filter('static')

Filters any request with the word 'static' from the log.

Filtering more than one word:

filter = Filter('static', 'admin')

Updating the filter:

filter = Filter('static')
filter.filters = 'static', 'admin'

About

Filter requests from Flask logs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages