Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/canassa/flask-trace

A Simple logging decorator for Flask applications
https://github.com/canassa/flask-trace

Last synced: 14 days ago
JSON representation

A Simple logging decorator for Flask applications

Awesome Lists containing this project

README

        

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