nixos/ebusd: fix logging overrides
This fixes #292131 - currently we specify --log=all:<level>, which overrides all other log areas. Specifying this first allows the further log areas to be specified without being replaced.
This commit is contained in:
parent
5250ee5c0b
commit
979ae4c6e5
1 changed files with 1 additions and 1 deletions
|
@ -15,12 +15,12 @@ let
|
|||
"--port=${toString cfg.port}"
|
||||
"--configpath=${cfg.configpath}"
|
||||
"--scanconfig=${cfg.scanconfig}"
|
||||
"--log=all:${cfg.logs.all}"
|
||||
"--log=main:${cfg.logs.main}"
|
||||
"--log=network:${cfg.logs.network}"
|
||||
"--log=bus:${cfg.logs.bus}"
|
||||
"--log=update:${cfg.logs.update}"
|
||||
"--log=other:${cfg.logs.other}"
|
||||
"--log=all:${cfg.logs.all}"
|
||||
] ++ lib.optionals cfg.readonly [
|
||||
"--readonly"
|
||||
] ++ lib.optionals cfg.mqtt.enable [
|
||||
|
|
Loading…
Reference in a new issue