public static void LogWarning(LogFilter.FilterLevel curLogLevel, string str)
 {
     if (curLogLevel <= LogFilter.FilterLevel.Warn)
     {
         Debug.LogWarning(str);
     }
 }
 public static void LogDebug(LogFilter.FilterLevel curLogLevel, string str)
 {
     if (curLogLevel <= LogFilter.FilterLevel.Debug)
     {
         Debug.Log(str);
     }
 }
 public static void LogError(LogFilter.FilterLevel curLogLevel, string str)
 {
     if (curLogLevel <= LogFilter.FilterLevel.Error)
     {
         Debug.LogError(str);
     }
 }