Skip to main content

Adds PaperTrail logging to your Flask application

Project description

flask_papertrail
====

flask_papertrail -- Easily setup papertrail to your Flask application

.. image:: https://travis-ci.org/Gnouc/flask-papertrail.svg?branch=master
:target: https://travis-ci.org/Gnouc/flask-papertrail

Installation
============

.. code:: sh

pip install Flask-PaperTrail

Usage
=====

.. code:: python

from flask import Flask
from flask_papertrail import PaperTrail

app = Flask(__name__)
Papertrail(app)

Or using `init_app`:

.. code:: python

from flask import Flask
from flask_papertrail import PaperTrail

app = Flask(__name__)
p = PaperTrail()
p.init_app(app)

Config
==============

Required:

.. code:: python

app.config['PAPERTRAIL_HOST'] = 'your papertrail host setup'
app.config['PAPERTRAIL_PORT'] = 'your papertrail port setup'

Optional:

.. code:: python

app.config['PAPERTRAIL_APP'] = str(app) # Your papertrail app name
app.config['PAPERTRAIL_LOGFORMAT'] = '%(asctime)s %(hostname)s {0}: %(levelname)s %(message)s'.format(str(app)) # Log format

Author
======

Cuong Manh Le cuong.manhle.vn@gmail.com

License
=======

See `LICENSE <https://github.com/Gnouc/flask-papertrail/blob/master/LICENSE>`__

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-PaperTrail-0.0.2.tar.gz (2.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page