muffin 0.97.0__py3-none-any.whl → 0.97.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
muffin/app.py
CHANGED
@@ -75,10 +75,6 @@ class Application(BaseApp):
|
|
75
75
|
self.manage = Manager(self)
|
76
76
|
|
77
77
|
# Setup logging
|
78
|
-
log_config = self.cfg.get("LOG_CONFIG")
|
79
|
-
if log_config and isinstance(log_config, dict) and log_config.get("version"):
|
80
|
-
dictConfig(log_config)
|
81
|
-
|
82
78
|
self.logger = logging.getLogger("muffin")
|
83
79
|
self.logger.setLevel(self.cfg.LOG_LEVEL)
|
84
80
|
self.logger.propagate = False
|
@@ -89,6 +85,10 @@ class Application(BaseApp):
|
|
89
85
|
)
|
90
86
|
self.logger.addHandler(ch)
|
91
87
|
|
88
|
+
log_config = self.cfg.get("LOG_CONFIG")
|
89
|
+
if log_config and isinstance(log_config, dict) and log_config.get("version"):
|
90
|
+
dictConfig(log_config)
|
91
|
+
|
92
92
|
super().__init__(
|
93
93
|
debug=self.cfg.DEBUG,
|
94
94
|
logger=self.logger,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
muffin/__init__.py,sha256=F8Qp4ETX5FqI1832dj2moRAQ5hEb0TO9u4aRjSKXNjI,982
|
2
|
-
muffin/app.py,sha256=
|
2
|
+
muffin/app.py,sha256=HxTuFjokxw5_cDeWeOzLXYvw0HZB6ifIcOXAd1GMfTA,5130
|
3
3
|
muffin/constants.py,sha256=Ga1UJiEdXUk6dIEH_IEVYkFSZxQFPhxie7fCJwQY8V0,71
|
4
4
|
muffin/errors.py,sha256=I-vKbMMBiMU07zPdKvoJKqA7s4xYAUA-4oZXrRMRzcM,701
|
5
5
|
muffin/handler.py,sha256=YGodKswFv-dNf8ABODp_JQx0M36nCGmcKewAolrsq9k,3754
|
@@ -9,7 +9,7 @@ muffin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
muffin/pytest.py,sha256=Fzersdp2WoO9xCKx5Cezp3yU-We2AU6etiQcT360p3E,2705
|
10
10
|
muffin/types.py,sha256=wsUj5oAfqSZMoEf-wyFJLBlWa8Mc-eJGqKLr02HxuXE,153
|
11
11
|
muffin/utils.py,sha256=xWhd79f1qEw7CH4BjB6OqVHEOukWckIEc9ap7EHh_hs,2449
|
12
|
-
muffin-0.97.
|
13
|
-
muffin-0.97.
|
14
|
-
muffin-0.97.
|
15
|
-
muffin-0.97.
|
12
|
+
muffin-0.97.1.dist-info/METADATA,sha256=AyLC8pBP1jvFWRGCEWM8FvbOvqifj0pLA8G3OUhms7E,11614
|
13
|
+
muffin-0.97.1.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
14
|
+
muffin-0.97.1.dist-info/entry_points.txt,sha256=GvPS3M-tNVPzhUS5jnUpOmWw2NAqedY34VRCYgPYzlM,84
|
15
|
+
muffin-0.97.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|