Check if debugging should be enabled for a category.
(debug_category=True)
| 17 | DEBUG_MASTER_SWITCH = False |
| 18 | |
| 19 | def should_debug(debug_category=True): |
| 20 | """Check if debugging should be enabled for a category.""" |
| 21 | return DEBUG_MASTER_SWITCH and debug_category |
no outgoing calls
no test coverage detected