Move bone linking log to debug level

This commit is contained in:
RisaDev
2024-06-05 19:02:37 +03:00
parent 56798566fb
commit a70bef8abe

View File

@@ -89,7 +89,7 @@ public unsafe class ModelBone
CustomizedTransform = null; CustomizedTransform = null;
Plugin.Logger.Information($"Unlinked {BoneName} from all templates"); Plugin.Logger.Debug($"Unlinked {BoneName} from all templates");
return true; return true;
} }
@@ -97,7 +97,7 @@ public unsafe class ModelBone
if (!template.Bones.ContainsKey(BoneName)) if (!template.Bones.ContainsKey(BoneName))
return false; return false;
Plugin.Logger.Information($"Linking {BoneName} to {template.Name}"); Plugin.Logger.Debug($"Linking {BoneName} to {template.Name}");
CustomizedTransform = template.Bones[BoneName]; CustomizedTransform = template.Bones[BoneName];
return true; return true;