예제 #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
파일: Logger.cs 프로젝트: wlgys8/Log4Unity
 public bool IsOn(LogType type)
 {
     ConfigurateIfNot();
     return(Configurator.CheckLogOn(type, _logLevel));
 }