namespace Wayne.Lib.Log { /// <summary> /// Describes the level of the debug information. /// Can be used to reduce the size of the logs. /// </summary> public enum DebugLogLevel { #region Fields /// <summary> /// Not logged. /// </summary> Excluded, /// <summary> /// Normal debug information. /// </summary> Normal, /// <summary> /// Detailed debug information. /// </summary> Detailed, /// <summary> /// Maximized debug information. /// </summary> Maximized #endregion } }