Skip to content

Commit 987f131

Browse files
committed
Fix type of hub app logging config
1 parent a8a1ca6 commit 987f131

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ Changelog
44

55
Notable changes to this project will be documented in this file.
66

7+
********************
8+
v2.8.13 (2025-09-09)
9+
********************
10+
11+
Fixed
12+
=====
13+
14+
- Fix crash caused by incorrect type of default logging configuration in hub app
15+
16+
----
17+
718
********************
819
v2.8.12 (2025-08-18)
920
********************

euporie/hub/app.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,10 @@ class HubApp(ConfigurableApp):
7878
name = "hub"
7979
_config_defaults: ClassVar[dict[str, Any]] = {
8080
"log_level_stdout": "info",
81-
"log_config": """
82-
{
83-
"handlers": { "stdout": {"share_stream": false} },
84-
"loggers": { "asyncssh": { "handlers":["stdout"], "level": "DEBUG" } }
85-
}
86-
""",
81+
"log_config": {
82+
"handlers": {"stdout": {"share_stream": False}},
83+
"loggers": {"asyncssh": {"handlers": ["stdout"], "level": "DEBUG"}},
84+
},
8785
}
8886

8987
@classmethod

0 commit comments

Comments
 (0)