elfo-rs / elfo

An asynchronous distributed actor framework in Rust with robust observability
265 stars 16 forks source link

Merge config sections #30

Closed loyd closed 1 year ago

loyd commented 2 years ago

Works fine:

[common]
system.logging.targets.hyper.max_level = "Info"
[a]
system.logging.targets.reqwest.max_level = "Info"

Broken:

[common.system.logging.targets]
hyper.max_level = "Info"

[a]
system.logging.targets.reqwest.max_level = "Info"