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