Skip to content

Commit

Permalink
Merge pull request #34 from muhammad-ammar/ammar/remove-log
Browse files Browse the repository at this point in the history
fix: remove log statement
  • Loading branch information
irfanuddinahmad authored Mar 22, 2024
2 parents 21ff174 + 7ecc75c commit d402516
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ Unreleased
**********


[0.1.10] - 2024-03-22
************************************************

Changed
=======

* Remove log statement


[0.1.9] - 2024-03-20
************************************************

Expand Down
2 changes: 1 addition & 1 deletion skill_tagging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Django app plugin for fetching and verifying tags for xblock skills.
"""

__version__ = '0.1.9'
__version__ = '0.1.10'

# pylint: disable=invalid-name
default_app_config = 'skill_tagging.apps.SkillTaggingConfig'
3 changes: 0 additions & 3 deletions skill_tagging/skill_tagging_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ def fetch_skill_tags(self):

course_key_str = str(self.scope_ids.usage_id.context_key)
usage_id_str = str(self.scope_ids.usage_id)
LOGGER.info(
f"[XBLOCK_SKILL_TAGGING] Fetching Skills. XBlock: [{usage_id_str}], Course: [{course_key_str}]."
)
XBLOCK_SKILL_TAGS_API = urljoin(
settings.TAXONOMY_API_BASE_URL,
'/taxonomy/api/v1/xblocks/'
Expand Down

0 comments on commit d402516

Please sign in to comment.