Skip to content

Commit

Permalink
Log -> LogFine
Browse files Browse the repository at this point in the history
  • Loading branch information
flibber-hk authored Dec 26, 2022
1 parent ee13a7b commit 78baa99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CustomKnight/Skin/Swapper/SwapManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private void applySkinsUsingProxy(GameObjectProxy gop,GameObject go){
//CustomKnight.Instance.Log("hasChildren " + gop.children.Count() + " c " + go.transform.childCount);
foreach(KeyValuePair<string,GameObjectProxy> kvp in gop.children){
try{
this.Log("Trying children with name : " + kvp.Key);
this.LogFine("Trying children with name : " + kvp.Key);
var children = go.FindGameObjectsInChildren(kvp.Key,true);
foreach(var child in children){
applySkinsUsingProxy(kvp.Value,child);
Expand Down Expand Up @@ -550,4 +550,4 @@ internal void Log(string str) {
}

}
}
}

0 comments on commit 78baa99

Please sign in to comment.