mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-21 16:34:48 +00:00
Stream debugging now uses CrestronConsole instead of debug methods, so that the debug statements will be printed regardless of console debug level. This also means that comm debug statements will NOT be in the Crestron Error log or in the files created by the logging system
29 lines
514 B
C#
29 lines
514 B
C#
using System;
|
|
|
|
namespace PepperDash.Core
|
|
{
|
|
/// <summary>
|
|
/// The available settings for stream debugging
|
|
/// </summary>
|
|
[Flags]
|
|
public enum eStreamDebuggingSetting
|
|
{
|
|
/// <summary>
|
|
/// Debug off
|
|
/// </summary>
|
|
Off = 0,
|
|
/// <summary>
|
|
/// Debug received data
|
|
/// </summary>
|
|
Rx = 1,
|
|
/// <summary>
|
|
/// Debug transmitted data
|
|
/// </summary>
|
|
Tx = 2,
|
|
/// <summary>
|
|
/// Debug both received and transmitted data
|
|
/// </summary>
|
|
Both = Rx | Tx
|
|
}
|
|
}
|