﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
36958	Have test client reload logging when logging setting changed	Jake Howard	SnippyCodes	"When changing the `LOGGING` setting (eg in tests), `logging` config isn't reconfigured to match.

This can be fairly easily added in a project:

{{{#!python
@receiver(setting_changed)
def reload_logging_config(*, setting: str, **kwargs: Any) -> None:
    if setting in {""LOGGING"", ""LOGGING_CONFIG""}:
        configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
}}}

But it would be nice if this was handled by default. This snippet appears to do what I need, but there might be edge cases I've not considered."	Cleanup/optimization	closed	Testing framework	6.0	Normal	fixed			Ready for checkin	1	0	0	0	0	0
