Remove log spam.

This commit is contained in:
2025-02-24 12:36:31 +01:00
parent 25a5fd2124
commit 6c42da280a
6 changed files with 14 additions and 14 deletions

View File

@@ -500,7 +500,7 @@ namespace VIVE.OpenXR
/// </summary>
protected override void RegisterDeviceLayout()
{
sb.Clear().Append("RegisterDeviceLayout() ").Append(kLayoutName).Append(", product: ").Append(kDeviceLocalizedName); DEBUG(sb);
// sb.Clear().Append("RegisterDeviceLayout() ").Append(kLayoutName).Append(", product: ").Append(kDeviceLocalizedName); DEBUG(sb);
InputSystem.RegisterLayout(typeof(VIVEFocus3Controller),
kLayoutName,
matches: new InputDeviceMatcher()
@@ -513,7 +513,7 @@ namespace VIVE.OpenXR
/// </summary>
protected override void UnregisterDeviceLayout()
{
sb.Clear().Append("UnregisterDeviceLayout() ").Append(kLayoutName); DEBUG(sb);
// sb.Clear().Append("UnregisterDeviceLayout() ").Append(kLayoutName); DEBUG(sb);
InputSystem.RemoveLayout(kLayoutName);
}