Skip to content

skroonenburg/Appfail-Django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Appfail-Django

Appfail Django Reporting Module

See this page for more information: http://appfail.net/OtherPlatforms

The REST API for Appfail is documented here: <<<<<<< HEAD http://support.appfail.net/kb/rest-api-for-reporting-failures/rest-api-documentation-for-failure-reporting

Status

Please do not use this reporting module outside of testing environments

Setup

  • Clone the repository into your Django project
  • Add 'appfail' to your INSTALLED_APPS
  • Amend the default LOGGING variable in your settings.py
# add the appfail handler
'handlers': {
    'appfail': {
        'level': 'ERROR',
        'class': 'appfail.log.AppFailHandler',
    }
},

# enable the appfail logger
'loggers': {
    'django.request': {
        'handlers': ['appfail'],
        'level': 'ERROR',
        'api_key': 'YOUR_API_KEY',
        'propagate': True,
    },
}

======= http://support.appfail.net/kb/rest-api-for-reporting-failures/rest-api-documentation-for-failure-reporting

parent of 8703e6c... Model for caching

About

Appfail Django Reporting Module

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages