Metadata-Version: 2.0
Name: flask-trace
Version: 0.0.2
Summary: Log trace decorator function for Flask
Home-page: https://github.com/canassa/flask-trace
Author: Cesar Canassa
Author-email: cesar@canassa.com
License: MIT
Keywords: flask log trace logging
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7

Flask Trace
===========

A Simple logging decorator for Flask applications

Usage
-----

Simply import the trace decorator and apply it to any function you want to log.

.. code-block:: python

    from flask_trace import trace

    @trace
    def my_awesome_function(arg1, arg2):
        pass


Now, any call to the my_awesome_function will be logged like this::

    TRACE: trace_uuid=44f64962-3468-4273-bcd7-1c2067faacdf func_name=my_awesome_function arg1=1 arg2=2


