mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
refactor: Comment out logging statements in help request handling
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user