fix(touchpanel): update log messages to use resolved app URL instead of feedback string

This commit is contained in:
Neil Dorin 2026-08-18 12:21:14 -06:00
parent dbd9ad5f25
commit ab7453d39d

View file

@ -498,11 +498,11 @@ namespace PepperDash.Essentials.Touchpanel
{
var appUrl = GetUrlWithCorrectIp(_appUrl);
this.LogInformation("Sending {appUrl} on join 1", AppUrlFeedback.StringValue);
this.LogInformation("Sending {appUrl} on join 1", appUrl);
if (Panel.StringInput[1].StringValue == appUrl)
{
this.LogInformation("App URL already set to {appUrl}, no update needed", AppUrlFeedback.StringValue);
this.LogInformation("App URL already set to {appUrl}, no update needed", appUrl);
return;
}