Changes between Initial Version and Version 1 of Ticket #35357
- Timestamp:
- Apr 6, 2024, 4:34:26 AM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35357 – Description
initial v1 10 10 11 11 {{{ 12 logger.error( "Foo failed. The bar object looked like this. Retrying with {xyz} thing", extra={12 logger.error(f"Foo failed. The bar object looked like this. Retrying with {xyz} thing", extra={ 13 13 "bar_object": bar_object 14 14 }) 15 15 }}} 16 16 17 I'm aware that I can create a custom logger inheriting from logging.Handler (or the several other ways this can be achieved), but IMHO this is such a basic featuresthat it should be included in Django itself.17 I'm aware that I can create a custom logger inheriting from `logging.Handler` (or the several other ways this can be achieved), but IMHO this is such a basic feature that it should be included in Django itself.