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