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