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