Skip to content

Commit

Permalink
fix: Updated logging to log all aborted cases
Browse files Browse the repository at this point in the history
  • Loading branch information
IrfanUddinAhmad committed Jan 25, 2024
1 parent cdd89a9 commit 7a97ffb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions skill_tagging/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,18 +84,18 @@ def run_filter(self, block, fragment, context, view): # pylint: disable=argumen

# Check whether we need to run this filter and only call the API.
if not self.should_run_filter():
logger.info(
"[Xblock-Skill-Tagging] Filter aborted for vertical block. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
return {"block": block, "fragment": fragment, "context": context, "view": view}
logger.info(
"[Xblock-Skill-Tagging] Filter run for AddVerticalBlockSkillVerificationSection. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
skills = self.fetch_related_skills(block)
if not skills:
logger.info(
"[Xblock-Skill-Tagging] Skills missing for vertical block. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
return {"block": block, "fragment": fragment, "context": context, "view": view}
logger.info(
"[Xblock-Skill-Tagging] Skills found for AddVerticalBlockSkillVerificationSection. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
usage_id = block.scope_ids.usage_id
data = self.get_skill_context(usage_id, block, skills)
html = resource_string("static/tagging.html")
Expand Down Expand Up @@ -128,19 +128,19 @@ def run_filter(self, block, context): # pylint: disable=arguments-differ
"""Pipeline Step implementing the Filter"""
usage_id = block.scope_ids.usage_id
if usage_id.block_type != "video" or not self.should_run_filter():
logger.info(
"[Xblock-Skill-Tagging] Filter aborted for block. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
# avoid fetching skills for other xblocks
return {"block": block, "context": context}
logger.info(
"[Xblock-Skill-Tagging] Filter run for AddVideoBlockSkillVerificationComponent. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
skills = self.fetch_related_skills(block)
if not skills:
logger.info(
"[Xblock-Skill-Tagging] Skills missing for video. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
return {"block": block, "context": context}
logger.info(
"[Xblock-Skill-Tagging] Skills found for AddVideoBlockSkillVerificationComponent. Block-ID: %s",
str(block.scope_ids.usage_id.block_id)
)
data = self.get_skill_context(usage_id, block, skills)

def wrapper(fn):
Expand Down

0 comments on commit 7a97ffb

Please sign in to comment.