コード例 #1
0
ファイル: LogFactory.cs プロジェクト: wlgys8/Log4Unity
 public static bool Configurate(string configJSONText)
 {
     return(Configurator.TryLoadFromText(configJSONText));
 }
コード例 #2
0
ファイル: Appender.cs プロジェクト: wlgys8/Log4Unity
 private bool CheckLevel(LogType logType)
 {
     return(Configurator.CheckLogOn(logType, this.logLevel));
 }
コード例 #3
0
ファイル: LogFactory.cs プロジェクト: wlgys8/Log4Unity
 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));
 }