示例#1
0
 public void WriteLog(LogMsg pLogMsg, string funName, string pMsg)
 {
     pLogMsg.FunctionName = funName;
     pLogMsg.Msg          = pMsg;
     base.WriteText(pLogMsg.GetMsg() + "\n");
 }
示例#2
0
 public void WriteLog(LogMsg pLogMsg, string pMsg)
 {
     pLogMsg.Msg = pMsg;
     base.WriteText(pLogMsg.GetMsg() + "\n");
 }
示例#3
0
 public void WriteLog(LogMsg pLogMsg)
 {
     base.WriteText(pLogMsg.GetMsg() + "\n");
 }
示例#4
0
 public void WriteLog(LogMsg pLogMsg, string funName, string pMsg)
 {
     pLogMsg.FunctionName = funName;
     pLogMsg.Msg = pMsg;
     base.WriteText(pLogMsg.GetMsg() + "\n");
 }
示例#5
0
 public void WriteLog(LogMsg pLogMsg, string pMsg)
 {
     pLogMsg.Msg = pMsg;
     base.WriteText(pLogMsg.GetMsg() + "\n");
 }
示例#6
0
 public void WriteLog(LogMsg pLogMsg)
 {
     base.WriteText(pLogMsg.GetMsg() + "\n");
 }