Remove the annoying logger about non standard bones

This commit is contained in:
Yusarina
2025-03-31 13:57:12 +01:00
parent 1e8784d0e4
commit 64a78dbbb2
-1
View File
@@ -113,7 +113,6 @@ def validate_armature(armature: Object, detailed_messages: bool = False) -> Unio
non_standard_bones.append(bone_name)
if non_standard_bones:
logger.warning(f"Found {len(non_standard_bones)} non-standard bones")
non_standard_list = "\n".join([f"- {bone}" for bone in non_standard_bones])
non_standard_messages.append(t("Armature.validation.non_standard_bones", bones=non_standard_list))