Beispiel #1
0
 /// <summary>
 /// Add a status entry to log
 /// </summary>
 /// <param name="entry"></param>
 private static void AddToLog(STATUS_TYPE status, string comment)
 {
     c_sStatusLog += System.DateTime.Now.ToString() + "\r\n";
     c_sStatusLog += "Entry #" + c_iLogCount++ + ":  " + status.ToString() + "\r\n";
     c_sStatusLog += comment + "\r\n";
 }