You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update the logging config actor configuration format (#1204)
The logging configuration was changed to make it compatible with the
configuration generated by the UI, which doesn't quote sub-key properly.
To do this, the logger name needs to be specified explicitly now (the
configuration key was used as the name before).
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+31
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,37 @@
8
8
9
9
* Includes a major update of the numpy dependency to v2.x.
10
10
11
+
* The logging configuration was changed, and now the logger name needs to be specified explicitly (the configuration key was used as the name before). This is to be compatible with configuration generated by the UI, which doesn't quote sub-key properly.
12
+
13
+
- Before:
14
+
15
+
```toml
16
+
[logging.loggers."frequenz.sdk.config"]
17
+
level = "DEBUG"
18
+
```
19
+
20
+
- Now:
21
+
22
+
```toml
23
+
[logging.loggers.frequenz_config]
24
+
name = "frequenz.sdk.config"
25
+
level = "DEBUG"
26
+
```
27
+
28
+
* The logging configuration now uses a separate class for the root logger configuration: `RootLoggerConfig`.
0 commit comments