mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Adds some debug comments to assist in debugging
This commit is contained in:
parent
8ae03a8187
commit
77672237e6
1 changed files with 5 additions and 1 deletions
|
|
@ -51,6 +51,8 @@ namespace PepperDash.Essentials
|
||||||
|
|
||||||
public override void Show()
|
public override void Show()
|
||||||
{
|
{
|
||||||
|
Debug.Console(2, "Showing ScreenSaverController");
|
||||||
|
|
||||||
if (_parent.AvDriver != null)
|
if (_parent.AvDriver != null)
|
||||||
{
|
{
|
||||||
_parent.AvDriver.PopupInterlock.ShowInterlocked(UIBoolJoin.MCScreenSaverVisible);
|
_parent.AvDriver.PopupInterlock.ShowInterlocked(UIBoolJoin.MCScreenSaverVisible);
|
||||||
|
|
@ -86,6 +88,8 @@ namespace PepperDash.Essentials
|
||||||
|
|
||||||
void StartPositionTimer()
|
void StartPositionTimer()
|
||||||
{
|
{
|
||||||
|
Debug.Console(2, "Starting Position Timer");
|
||||||
|
|
||||||
if (PositionTimer == null)
|
if (PositionTimer == null)
|
||||||
{
|
{
|
||||||
PositionTimer = new CTimer((o) => PositionTimerExpired(), PositionTimeoutMs);
|
PositionTimer = new CTimer((o) => PositionTimerExpired(), PositionTimeoutMs);
|
||||||
|
|
@ -117,7 +121,7 @@ namespace PepperDash.Essentials
|
||||||
CurrentPositionIndex = 0;
|
CurrentPositionIndex = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Debug.Console(2, "ScreenSaver Position Timer Expired: Setting new position: {0}", CurrentPositionIndex);
|
Debug.Console(2, "ScreenSaver Position Timer Expired: Setting new position: {0}", CurrentPositionIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue