fix: Use RegisterWithLogging for touchpanel registration

Replaced _touchpanel.Register() with _touchpanel.RegisterWithLogging() to add logging during touchpanel registration, improving debugging and monitoring capabilities.
This commit is contained in:
Nick Genovese 2026-08-14 10:36:08 -04:00
parent 21faed417b
commit f64d8a3f11

View file

@ -65,7 +65,7 @@ namespace PepperDash.Essentials.Core.Touchpanels
if (_touchpanel.Registerable) if (_touchpanel.Registerable)
{ {
var registrationResponse = _touchpanel.Register(); var registrationResponse = _touchpanel.RegisterWithLogging(Key);
Debug.LogMessage(LogEventLevel.Information, this, "touchpanel registration response: {0}", registrationResponse); Debug.LogMessage(LogEventLevel.Information, this, "touchpanel registration response: {0}", registrationResponse);
} }