Skip to content

Commit

Permalink
Add logging to troubleshoot missing responses
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Apr 4, 2024
1 parent 41d963e commit 8d7d4de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion neon_utils/skills/common_query_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
from ovos_workshop.skills.common_query_skill import CommonQuerySkill as _CQS
from ovos_workshop.decorators.compat import backwards_compat
from ovos_utils.file_utils import resolve_resource_file
from ovos_utils.log import log_deprecation
from ovos_utils.log import log_deprecation, LOG
from neon_utils.skills.neon_skill import NeonSkill


Expand Down Expand Up @@ -140,6 +140,7 @@ def __handle_query_classic(self, message):
Extracts phrase and data from message forward this to the skills
CQS_action method.
"""
LOG.info(f"handling for ovos-core 0.0.7")
if message.data["skill_id"] != self.skill_id:
# Not for this skill!
return
Expand All @@ -159,6 +160,7 @@ def __handle_query_action(self, message):
to the `CQS_action` method.
@param message: `question:action` message
"""
LOG.info(f"handling for ovos-core 0.0.8")
if message.data["skill_id"] != self.skill_id:
# Not for this skill!
return
Expand Down

0 comments on commit 8d7d4de

Please sign in to comment.