From 183c016594f7e5f892e5aa7667d74b232328c6f6 Mon Sep 17 00:00:00 2001 From: Adam Greene Date: Mon, 11 Jul 2022 10:04:03 -0400 Subject: [PATCH] Fix for #2879 --- luigi/configuration/toml_parser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/luigi/configuration/toml_parser.py b/luigi/configuration/toml_parser.py index 43a97a08d7..8eace3db68 100644 --- a/luigi/configuration/toml_parser.py +++ b/luigi/configuration/toml_parser.py @@ -55,6 +55,8 @@ def read(self, config_paths): # freeze dict params for section, content in self.data.items(): + if section.lower() == 'logging': + continue for key, value in content.items(): if isinstance(value, dict): self.data[section][key] = recursively_freeze(value)