From fbfb8978391301eccaf186aa65874bd49e921041 Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Sat, 21 May 2022 10:22:07 -0600 Subject: [PATCH 1/2] Change logging propagation --- src/ptcoffee/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }, }, } From 318d01b0971d245217dea252f2cd7ba46cff39d5 Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Sat, 21 May 2022 10:23:00 -0600 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) 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