refactor: Comment out logging statements in help request handling

This commit is contained in:
Neil Dorin
2025-10-30 14:33:58 -06:00
parent 071174fa7d
commit c852f87a27

View File

@@ -1784,30 +1784,30 @@ namespace PepperDash.Essentials.Core.Fusion
switch (FusionRoom.Help.OutputSig.StringValue) switch (FusionRoom.Help.OutputSig.StringValue)
{ {
case "Please wait, a technician is on his / her way.": case "Please wait, a technician is on his / her way.":
this.LogInformation("Please wait, a technician is on his / her way.", // this.LogInformation("Please wait, a technician is on his / her way.",
Room.Name); // Room.Name);
_helpRequestStatus = eFusionHelpResponse.HelpOnTheWay; _helpRequestStatus = eFusionHelpResponse.HelpOnTheWay;
break; break;
case "Please call the helpdesk.": case "Please call the helpdesk.":
this.LogInformation("Please call the helpdesk."); // this.LogInformation("Please call the helpdesk.");
_helpRequestStatus = eFusionHelpResponse.CallHelpDesk; // _helpRequestStatus = eFusionHelpResponse.CallHelpDesk;
break; break;
case "Please wait, I will reschedule your meeting to a different room.": case "Please wait, I will reschedule your meeting to a different room.":
this.LogInformation("Please wait, I will reschedule your meeting to a different room.", // this.LogInformation("Please wait, I will reschedule your meeting to a different room.",
Room.Name); // Room.Name);
_helpRequestStatus = eFusionHelpResponse.ReschedulingMeeting; _helpRequestStatus = eFusionHelpResponse.ReschedulingMeeting;
break; break;
case "I will be taking control of your system. Please be patient while I adjust the settings.": case "I will be taking control of your system. Please be patient while I adjust the settings.":
this.LogInformation("I will be taking control of your system. Please be patient while I adjust the settings.", // this.LogInformation("I will be taking control of your system. Please be patient while I adjust the settings.",
Room.Name); // Room.Name);
_helpRequestStatus = eFusionHelpResponse.TakingControl; _helpRequestStatus = eFusionHelpResponse.TakingControl;
break; break;
default: default:
this.LogInformation("Unknown help request code received from Fusion for room '{0}'", // this.LogInformation("Unknown help request code received from Fusion for room '{0}'",
Room.Name); // Room.Name);
_helpRequestStatus = eFusionHelpResponse.None; _helpRequestStatus = eFusionHelpResponse.None;
break; break;