diff --git a/CHANGELOG.md b/CHANGELOG.md index 5be9a90..f00fc98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.11] - 2022-05-21 +### Changed +- File logging handler to not propagate + ## [1.3.10] - 2022-05-21 ### Added - Tests for almost all storefront views, exposing a couple of inconsistencies diff --git a/src/ptcoffee/settings.py b/src/ptcoffee/settings.py index 7f771f6..56ccab6 100644 --- a/src/ptcoffee/settings.py +++ b/src/ptcoffee/settings.py @@ -226,7 +226,7 @@ LOGGING = { 'django.file': { 'handlers': ['file'], 'level': 'INFO', - 'propagate': True, + 'propagate': False, }, }, }