From f64d8a3f11f5155fdb9ceb2e59e42a04cb84df37 Mon Sep 17 00:00:00 2001 From: Nick Genovese Date: Fri, 14 Aug 2026 10:36:08 -0400 Subject: [PATCH] fix: Use RegisterWithLogging for touchpanel registration Replaced _touchpanel.Register() with _touchpanel.RegisterWithLogging() to add logging during touchpanel registration, improving debugging and monitoring capabilities. --- src/PepperDash.Essentials.Core/Touchpanels/Mpc4Touchpanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.Core/Touchpanels/Mpc4Touchpanel.cs b/src/PepperDash.Essentials.Core/Touchpanels/Mpc4Touchpanel.cs index 3d1cb5fc..263f0598 100644 --- a/src/PepperDash.Essentials.Core/Touchpanels/Mpc4Touchpanel.cs +++ b/src/PepperDash.Essentials.Core/Touchpanels/Mpc4Touchpanel.cs @@ -65,7 +65,7 @@ namespace PepperDash.Essentials.Core.Touchpanels if (_touchpanel.Registerable) { - var registrationResponse = _touchpanel.Register(); + var registrationResponse = _touchpanel.RegisterWithLogging(Key); Debug.LogMessage(LogEventLevel.Information, this, "touchpanel registration response: {0}", registrationResponse); }