Skip to content

Commit

Permalink
logs
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Nov 20, 2024
1 parent c97136e commit 7248243
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ovos_core/intent_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ def __init__(self, bus, config=None):
self.config = config or Configuration().get("intents", {})

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

self.utterance_plugins = UtteranceTransformersService(bus)
self.metadata_plugins = MetadataTransformersService(bus)
Expand Down Expand Up @@ -120,9 +122,6 @@ def get_pipeline(self, skips=None, session=None, skip_stage_matchers=False) -> L
log_deprecation("'skips' kwarg has been deprecated!", "1.0.0")
skips = [OVOSPipelineFactory._MAP.get(p, p) for p in skips]

for p in OVOSPipelineFactory.get_installed_pipelines():
LOG.info(f"Found pipeline: {p}")

pipeline: List[str] = [OVOSPipelineFactory._MAP.get(p, p)
for p in session.pipeline
if p not in skips]
Expand Down

0 comments on commit 7248243

Please sign in to comment.