10 references to DebugLevel
System.DirectoryServices.AccountManagement (10)
System\DirectoryServices\AccountManagement\ConfigurationHandler.cs (3)
15
public ConfigSettings(
DebugLevel
debugLevel, string debugLogFile)
25
public
DebugLevel
DebugLevel
35
private readonly
DebugLevel
_debugLevel = GlobalConfig.DefaultDebugLevel;
System\DirectoryServices\AccountManagement\GlobalConfig.cs (3)
10
public const
DebugLevel
DefaultDebugLevel =
12
DebugLevel
.Info;
17
public static
DebugLevel
DebugLevel => s_configSettings?.DebugLevel ?? DefaultDebugLevel;
System\DirectoryServices\AccountManagement\GlobalDebug.cs (4)
20
private static readonly
DebugLevel
s_debugLevel = GlobalConfig.DebugLevel;
22
public static bool Error =>
DebugLevel
.Error >= s_debugLevel;
24
public static bool Warn =>
DebugLevel
.Warn >= s_debugLevel;
26
public static bool Info =>
DebugLevel
.Info >= s_debugLevel;