mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Added debug statements to ExecuteNumericSwitch in DmTx4kz302CController
This commit is contained in:
parent
aa61479adc
commit
3c1ed6e58a
1 changed files with 7 additions and 0 deletions
|
|
@ -282,6 +282,12 @@ namespace PepperDash.Essentials.DM
|
|||
ExecuteSwitch(eVst.AllDisabled, null, eRoutingSignalType.Audio | eRoutingSignalType.Video);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
Debug.Console(2, this, "Unable to execute numeric switch to input {0}", input);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -289,6 +295,7 @@ namespace PepperDash.Essentials.DM
|
|||
|
||||
public void ExecuteSwitch(object inputSelector, object outputSelector, eRoutingSignalType signalType)
|
||||
{
|
||||
Debug.Console(2, this, "Attempting to switch InputSelector {0}", ((eVst)inputSelector).ToString());
|
||||
if ((signalType | eRoutingSignalType.Video) == eRoutingSignalType.Video)
|
||||
Tx.VideoSource = (eVst)inputSelector;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue