diff --git a/contentcuration/contentcuration/utils/assessment/base.py b/contentcuration/contentcuration/utils/assessment/base.py index c78547707b..368d9ad1c4 100644 --- a/contentcuration/contentcuration/utils/assessment/base.py +++ b/contentcuration/contentcuration/utils/assessment/base.py @@ -274,7 +274,7 @@ def _sort_by_order(self, items, item_type): try: return sorted(items, key=lambda x: x.get("order")) except TypeError: - logging.error(f"Unable to sort {item_type}, leaving unsorted.") + logging.warning(f"Unable to sort {item_type}, leaving unsorted.") return items def _process_answers(self, assessment_item):