Skip to content

Commit a70bef8

Browse files
committed
Move bone linking log to debug level
1 parent 5679856 commit a70bef8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CustomizePlus/Armatures/Data/ModelBone.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ public bool LinkToTemplate(Template? template)
8989

9090
CustomizedTransform = null;
9191

92-
Plugin.Logger.Information($"Unlinked {BoneName} from all templates");
92+
Plugin.Logger.Debug($"Unlinked {BoneName} from all templates");
9393

9494
return true;
9595
}
9696

9797
if (!template.Bones.ContainsKey(BoneName))
9898
return false;
9999

100-
Plugin.Logger.Information($"Linking {BoneName} to {template.Name}");
100+
Plugin.Logger.Debug($"Linking {BoneName} to {template.Name}");
101101
CustomizedTransform = template.Bones[BoneName];
102102

103103
return true;

0 commit comments

Comments
 (0)