Skip to content

Commit da53693

Browse files
authored
Update HandMeshController.cs
Correct log with string extrapolate
1 parent 21f1333 commit da53693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Samples~/HandMesh/HandMeshController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private void Start()
6767
if (meshSubsystems.Count != 1)
6868
{
6969
Debug.LogError("Unexpected number of mesh subsystems."
70-
+ "Expected 1, got {meshSubsystems.Count}.");
70+
+ $"Expected 1, got {meshSubsystems.Count}.");
7171
enabled = false;
7272
return;
7373
}

0 commit comments

Comments
 (0)