//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
///
/// Options for EventLoggingLevel.
///
public enum EventLoggingLevels
{
///
/// Disable all events.
///
Disable = 0,
///
/// Default level. Windows 7 and later.
///
Min = 1,
///
/// Low verbosity and lower. Windows 7 and later.
///
Low = 25,
///
/// Medium verbosity and lower. Windows 7 and later.
///
Medium = 50,
///
/// High verbosity and lower. Windows 7 and later.
///
High = 75,
///
/// All events.
///
Max = 100,
}
}