Skip to content

Commit

Permalink
Use interpolated string.
Browse files Browse the repository at this point in the history
  • Loading branch information
koschke committed Aug 7, 2024
1 parent 8fed0fc commit fea1613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/SEE/UI/RuntimeConfigMenu/RuntimeTabMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ private void CreateSetting(Func<object> getter, string settingName, GameObject p
value.GetType().GetMembers().ForEach(nestedInfo => CreateSetting(nestedInfo, parent, value));
break;
default:
Debug.LogWarning("Missing: " + settingName + ", " + value.GetType().FullName + "\n");
Debug.LogWarning($"Missing: {settingName}, {value.GetType().FullName}.\n");
break;
}
}
Expand Down

0 comments on commit fea1613

Please sign in to comment.