Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
settings: HIDE_IN_STACKTRACES: more finegrained hiding of django
Hiding all of Django in stacktraces is too much and not necessary usually.

I do not remember the details, but had this in a local patch since a
while already.
  • Loading branch information
blueyed committed Jul 26, 2018
commit cf7284aaf173916ed1ec796ddb834c496bae2f1d
7 changes: 6 additions & 1 deletion debug_toolbar/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@
'threading',
'wsgiref',
'debug_toolbar',
'django',
'django.db',
'django.core.handlers',
'django.core.servers',
'django.utils.decorators',
'django.utils.deprecation',
'django.utils.functional',
),
'PROFILER_MAX_DEPTH': 10,
'SHOW_TEMPLATE_CONTEXT': True,
Expand Down