Always passthrough loglevel to `ahabd` supervisor

service_subpkg
Tyler Goodlet 2023-03-08 14:56:21 -05:00
parent 7694419e71
commit bb723abc9d
1 changed files with 7 additions and 4 deletions

View File

@ -368,10 +368,12 @@ async def open_pikerd(
log.info('Spawning `marketstore` supervisor') log.info('Spawning `marketstore` supervisor')
ctn_ready, config, (cid, pid) = await service_nursery.start( ctn_ready, config, (cid, pid) = await service_nursery.start(
start_ahab, partial(
'marketstored', start_ahab,
start_marketstore, 'marketstored',
loglevel, start_marketstore,
loglevel=loglevel,
)
) )
log.info( log.info(
@ -391,6 +393,7 @@ async def open_pikerd(
start_ahab, start_ahab,
'elasticsearch', 'elasticsearch',
start_elasticsearch, start_elasticsearch,
loglevel=loglevel,
) )
) )