DNX / django-nanolog

Nanolog is a simple Django app to store simple logs, basically for statistical purposes.

Home Page:https://pypi.python.org/pypi/django-nanolog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nanolog

Nanolog is a simple Django app to store simple logs, basically for statistical purposes.

Detailed documentation is in the "docs" directory.

Quick start

  1. Add "nanolog" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'nanolog',
    )
    
  2. Run python manage.py migrate to create the nanolog models.

Usage

Import nanolog and log everything like this:

from nanolog.utils import nanolog
nanolog('access', 'webinar_detail', 'Webinar Title', request=request)
nanolog('changed_password', 'from:x|to:y', 'as we sugested', self.user, '127.0.0.1', log_object)
nanolog('changed_password', 'from:x|to:y')

Test

Just run:

./manage.py test nanolog

About

Nanolog is a simple Django app to store simple logs, basically for statistical purposes.

https://pypi.python.org/pypi/django-nanolog

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%