Skip to main content

A better exception printer for Tornado web server.

Project description

tornado-debugger

A debugger for Tornado server for a better development experience.

Tornado's default exception reporter is very basic and primitive. tornado-debugger is a drop-in replacement for the built-in debugger.

Install

$ pip install tornado-debugger

Usage

Use the DebuggerMixin class to automatically add the debugger features. This mixin class overrides RequestHandler.write_error method and will display a detailed error page.

from tornado import web
from tornado_debugger import DebuggerMixin


class IndexHandler(DebuggerMixin, web.RequestHandler):
    # always inherit from mixin class BEFORE the base class

    def get(self):
        1/0

Note: The DebuggerMixin only works in debug mode (i.e. when debug=True in the Application settings).

Screenshot

tornado-debugger screenshot

License

BSD-3-Clause

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tornado-debugger-0.9.2.tar.gz (8.0 kB view hashes)

Uploaded Source

Built Distribution

tornado_debugger-0.9.2-py3-none-any.whl (8.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page