fix: update registration debug statement to include response

This commit is contained in:
Jason DeVito
2023-10-25 15:44:39 -05:00
parent 6698dcb46e
commit d1d1d81165

View File

@@ -29,8 +29,8 @@ namespace PepperDash.Essentials.Core.Touchpanels
if (_touchpanel.Registerable) if (_touchpanel.Registerable)
{ {
_touchpanel.Register(); var registrationResponse = _touchpanel.Register();
Debug.Console(0, this, ""); Debug.Console(0, this, "touchpanel registration response: {0}", registrationResponse);
} }
_touchpanel.BaseEvent += _touchpanel_BaseEvent; _touchpanel.BaseEvent += _touchpanel_BaseEvent;