Skip to content

Commit 1e92278

Browse files
committed
logs
1 parent 03f281b commit 1e92278

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ovos_core/intent_services/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ def __init__(self, bus, config=None):
4646
self.config = config or Configuration().get("intents", {})
4747

4848
self.get_pipeline() # trigger initial load of pipeline plugins (more may be lazy loaded on demand)
49+
for p, c in OVOSPipelineFactory._CACHE.items():
50+
LOG.info(f"Loaded pipeline: {p} - {c.__class__.__name__}")
4951

5052
self.utterance_plugins = UtteranceTransformersService(bus)
5153
self.metadata_plugins = MetadataTransformersService(bus)
@@ -123,9 +125,6 @@ def get_pipeline(self, skips=None, session=None, skip_stage_matchers=False) -> L
123125
log_deprecation("'skips' kwarg has been deprecated!", "1.0.0")
124126
skips = [OVOSPipelineFactory._MAP.get(p, p) for p in skips]
125127

126-
for p in OVOSPipelineFactory.get_installed_pipelines():
127-
LOG.info(f"Found pipeline: {p}")
128-
129128
pipeline: List[str] = [OVOSPipelineFactory._MAP.get(p, p)
130129
for p in session.pipeline
131130
if p not in skips]

0 commit comments

Comments
 (0)