Logging configuration for flask application
Project description
Advanced Logging configuration for flask application based on yaml file.
See logging.config
Quickstart
Install flask_logify using pip:
$ pip install Flask-Logify
Example usage
An example of log file configuration is under example folder. Only yaml format is supported.
from flask import Flask
from flask_logify import FlaskLogging
app = Flask(__name__)
app.config['LOG_FILE_CONF'] = 'log.yaml'
logging = FlaskLogging()
with app.app_context():
logging.init_app(app)
app.run()
Go to http://127.0.0.1:5000/ and see log messages like configured
Configuration
LOG_FILE_CONF: (default: None) absolute path of configuration file
LOG_APP_NAME: (default: flask) the PROGRAM field of the log messages
LOG_LOGGER_NAME: (default: flask-development) usually is flask-{FLASK_ENV}
License MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-Logify-1.1.1.tar.gz
(3.5 kB
view details)
File details
Details for the file Flask-Logify-1.1.1.tar.gz
.
File metadata
- Download URL: Flask-Logify-1.1.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.29.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87558ca3cd3ce3dc60c1949f5aa64da3bcb8fca396c59cdb22f40c33d828f914 |
|
MD5 | 0d9c5d479ca361fc8b34fe3a023415da |
|
BLAKE2b-256 | 2da9a71fd28066d49d4969438d5da19cca764eea2170dfbcada7915f15040b2f |