示例#1
0
 void OnLog(Reporter.Log log)
 {
     //TO DO : put you custom code
     if (log.logType == Reporter._LogType.Error)
     {
         Utl.doCallback(getLuaFunction("OnLogError"), log);
     }
     else if (log.logType == Reporter._LogType.Warning)
     {
         Utl.doCallback(getLuaFunction("OnLogWarning"), log);
     }
 }
 private void OnLog(Reporter.Log log)
 {
 }
示例#3
0
 void OnLog(Reporter.Log log)
 {
     //TO DO : put you custom code
 }
示例#4
0
 public virtual void OnLog(Reporter.Log log)
 {
     //TO DO : put you custom code
 }