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

@@ -282,7 +282,7 @@ namespace VIVE.OpenXR
/// </summary>
protected override void RegisterDeviceLayout()
{
Debug.LogFormat("VIVECosmosProfile RegisterDeviceLayout() {0} , product: {1}", kLayoutName, kDeviceLocalizedName);
// Debug.LogFormat("VIVECosmosProfile RegisterDeviceLayout() {0} , product: {1}", kLayoutName, kDeviceLocalizedName);
InputSystem.RegisterLayout(typeof(ViveCosmosController),
kLayoutName,
matches: new InputDeviceMatcher()
@@ -295,7 +295,7 @@ namespace VIVE.OpenXR
/// </summary>
protected override void UnregisterDeviceLayout()
{
Debug.LogFormat("VIVECosmosProfile UnregisterDeviceLayout() {0}", kLayoutName);
// Debug.LogFormat("VIVECosmosProfile UnregisterDeviceLayout() {0}", kLayoutName);
InputSystem.RemoveLayout(kLayoutName);
}