示例#1
0
 public static bool Configurate(string configJSONText)
 {
     return(Configurator.TryLoadFromText(configJSONText));
 }
示例#2
0
 private bool CheckLevel(LogType logType)
 {
     return(Configurator.CheckLogOn(logType, this.logLevel));
 }
示例#3
0
 public static bool ConfigurateAtResources(string file)
 {
     return(Configurator.TryLoadFromResources(file));
 }
示例#4
0
 public bool IsOn(LogType type)
 {
     ConfigurateIfNot();
     return(Configurator.CheckLogOn(type, _logLevel));
 }