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