diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-22 13:06:47 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-22 13:06:47 +0800 |
commit | cab5aab88515c15cae3d2ed8b268f7dd37d21f87 (patch) | |
tree | 5c09871ee96fe48ab3d8fc39c099b3b5a09d68f0 /fg21sim/webui/app.py | |
parent | 53fb84ea01cc0de4f50806cd252273f435b41442 (diff) | |
download | fg21sim-cab5aab88515c15cae3d2ed8b268f7dd37d21f87.tar.bz2 |
webui: Add "/debug" handler when in debug mode.
Diffstat (limited to 'fg21sim/webui/app.py')
-rw-r--r-- | fg21sim/webui/app.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fg21sim/webui/app.py b/fg21sim/webui/app.py index e234263..ba27222 100644 --- a/fg21sim/webui/app.py +++ b/fg21sim/webui/app.py @@ -67,6 +67,9 @@ class Application(tornado.web.Application): url(r"/ajax/console", ConsoleAJAXHandler), url(r"/ws", WSHandler), ] + if options.debug: + from .handlers.base import BaseRequestHandler + handlers.append(url(r"/debug", BaseRequestHandler, name="debug")) # Application settings settings = { # The static files will be served from the default "/static/" URI. |