Metadata-Version: 1.1
Name: django-logit
Version: 1.0.8
Summary: Django Decorator of Logging Request Params/Response Content
Home-page: https://github.com/Brightcells/django-logit
Author: Hackathon
Author-email: kimi.huang@brightcells.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: ============
        django-logit
        ============
        
        Django Decorator of Logging Request Params/Response Content
        
        Installation
        ============
        
        ::
        
            pip install django-logit
        
        
        Usage
        =====
        
        ::
        
            from logit import logit
        
            @logit
            def xxx(request):
                xxx
        
            @logit(body=True, res=True)
            def ooo(request):
                xxx
        
        
        Settings.py
        ===========
        
        ::
        
            # logger setting
            LOGGING = {
                'version': 1,
                'disable_existing_loggers': False,
                'formatters': {
                    'verbose': {
                        'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
                    },
                    'simple': {
                        'format': '%(levelname)s %(message)s'
                    },
                },
                'handlers': {
                    'logit': {
                        'level': 'DEBUG',
                        'class': 'logging.FileHandler',
                        'filename': '/tmp/logit.log',
                        'formatter': 'verbose'
                    },
                },
                'loggers': {
                    'logit': {
                        'handlers': ['logit'],
                        'level': 'DEBUG',
                        'propagate': True,
                    },
                },
            }
        
        
        ConcurrentLogHandler::
        
            Use RotatingFileHandler/TimedRotatingFileHandler ``Logs Missing`` when host in uwsgi with multiple process
            Use ConcurrentLogHandler Instead
            Concurrent logging handler (drop-in replacement for RotatingFileHandler) Python 2.6+.
            This module provides an additional log handler for Python’s standard logging package (PEP 282). This handler will write log events to log file which is rotated when the log file reaches a certain size. Multiple processes can safely write to the same log file concurrently.
            Installation: pip install ConcurrentLogHandler
        
            LOGGING = {
                'version': 1,
                'disable_existing_loggers': False,
                'formatters': {
                    'verbose': {
                        'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
                    },
                    'simple': {
                        'format': '%(levelname)s %(message)s'
                    },
                },
                'handlers': {
                    'logit': {
                        'level': 'DEBUG',
                        'class': 'logging.handlers.ConcurrentRotatingFileHandler',
                        'filename': '/tmp/logit.log',
                        'maxBytes': 15728640,  # 1024 * 1024 * 15B = 15MB
                        'backupCount': 10,
                        'formatter': 'verbose',
                    },
                },
                'loggers': {
                    'logit': {
                        'handlers': ['logit'],
                        'level': 'DEBUG',
                        'propagate': True,
                    },
                },
            }
        
        
        RotatingFileHandler::
        
            Use RotatingFileHandler to support rotation of disk log files.
        
            LOGGING = {
                'version': 1,
                'disable_existing_loggers': False,
                'formatters': {
                    'verbose': {
                        'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
                    },
                    'simple': {
                        'format': '%(levelname)s %(message)s'
                    },
                },
                'handlers': {
                    'logit': {
                        'level': 'DEBUG',
                        'class': 'logging.handlers.RotatingFileHandler',
                        'filename': '/tmp/logit.log',
                        'maxBytes': 15728640,  # 1024 * 1024 * 15B = 15MB
                        'backupCount': 10,
                        'formatter': 'verbose',
                    },
                },
                'loggers': {
                    'logit': {
                        'handlers': ['logit'],
                        'level': 'DEBUG',
                        'propagate': True,
                    },
                },
            }
        
        
        TimedRotatingFileHandler::
        
            Use TimedRotatingFileHandler to support rotation of disk log files at certain timed intervals.
        
            LOGGING = {
                'version': 1,
                'disable_existing_loggers': False,
                'formatters': {
                    'verbose': {
                        'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
                    },
                    'simple': {
                        'format': '%(levelname)s %(message)s'
                    },
                },
                'handlers': {
                    'logit': {
                        'level': 'DEBUG',
                        'class': 'logging.handlers.TimedRotatingFileHandler',
                        'filename': '/tmp/logit.log',
                        'when': 'midnight',
                        'backupCount': 10,
                        'formatter': 'verbose',
                    },
                },
                'loggers': {
                    'logit': {
                        'handlers': ['logit'],
                        'level': 'DEBUG',
                        'propagate': True,
                    },
                },
            }
        
        
        
Keywords: django-logit
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
