123456789101112131415161718192021222324252627282930313233 |
- 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
- }
- }
|