We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5679856 commit a70bef8Copy full SHA for a70bef8
CustomizePlus/Armatures/Data/ModelBone.cs
@@ -89,15 +89,15 @@ public bool LinkToTemplate(Template? template)
89
90
CustomizedTransform = null;
91
92
- Plugin.Logger.Information($"Unlinked {BoneName} from all templates");
+ Plugin.Logger.Debug($"Unlinked {BoneName} from all templates");
93
94
return true;
95
}
96
97
if (!template.Bones.ContainsKey(BoneName))
98
return false;
99
100
- Plugin.Logger.Information($"Linking {BoneName} to {template.Name}");
+ Plugin.Logger.Debug($"Linking {BoneName} to {template.Name}");
101
CustomizedTransform = template.Bones[BoneName];
102
103
0 commit comments