public static bool Configurate(string configJSONText) { return(Configurator.TryLoadFromText(configJSONText)); }
private bool CheckLevel(LogType logType) { return(Configurator.CheckLogOn(logType, this.logLevel)); }
public static bool ConfigurateAtResources(string file) { return(Configurator.TryLoadFromResources(file)); }
public bool IsOn(LogType type) { ConfigurateIfNot(); return(Configurator.CheckLogOn(type, _logLevel)); }