From cdbbe077c23b05465976b705d37f7fee680f3e1e Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Wed, 9 Dec 2020 16:47:23 -0500 Subject: [PATCH] Enable keeping some request history. This makes it easire to debug things like POST requests that would otherwise not be easily debugged during development. --- cms/envs/devstack.py | 1 + lms/envs/devstack.py | 1 + 2 files changed, 2 insertions(+) diff --git a/cms/envs/devstack.py b/cms/envs/devstack.py index 14ebce79a0..e1080fd924 100644 --- a/cms/envs/devstack.py +++ b/cms/envs/devstack.py @@ -94,6 +94,7 @@ DEBUG_TOOLBAR_PANELS = ( 'debug_toolbar.panels.signals.SignalsPanel', 'debug_toolbar.panels.logging.LoggingPanel', 'debug_toolbar.panels.profiling.ProfilingPanel', + 'debug_toolbar.panels.history.HistoryPanel', ) DEBUG_TOOLBAR_CONFIG = { diff --git a/lms/envs/devstack.py b/lms/envs/devstack.py index b6b9607ad2..3a0f04fb7d 100644 --- a/lms/envs/devstack.py +++ b/lms/envs/devstack.py @@ -93,6 +93,7 @@ DEBUG_TOOLBAR_PANELS = ( 'debug_toolbar.panels.sql.SQLPanel', 'debug_toolbar.panels.signals.SignalsPanel', 'debug_toolbar.panels.logging.LoggingPanel', + 'debug_toolbar.panels.history.HistoryPanel', # ProfilingPanel has been intentionally removed for default devstack.py # runtimes for performance reasons. If you wish to re-enable it in your # local development environment, please create a new settings file