daemon: improve node boot logging to display config and legacy services
This commit is contained in:
parent
c91facd6e3
commit
5abbc1680a
1 changed files with 6 additions and 1 deletions
|
@ -1113,7 +1113,12 @@ class Session:
|
||||||
:param node: node to boot
|
:param node: node to boot
|
||||||
:return: nothing
|
:return: nothing
|
||||||
"""
|
"""
|
||||||
logger.info("booting node(%s): %s", node.name, [x.name for x in node.services])
|
logger.info(
|
||||||
|
"booting node(%s): config services(%s) services(%s)",
|
||||||
|
node.name,
|
||||||
|
", ".join(node.config_services.keys()),
|
||||||
|
", ".join(x.name for x in node.services),
|
||||||
|
)
|
||||||
self.services.boot_services(node)
|
self.services.boot_services(node)
|
||||||
node.start_config_services()
|
node.start_config_services()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue