示例#1
0
 private void writeSingleLog()
 {
     if (this.singleLogFilePath.Text != null && this.loggingEnabled)
     {
         string text = LogParser.ParseLogStyle(this._trunkLoggerData, null, null, null, false);
         if (text != null)
         {
             this.versionAndStatus.Text = text;
             this.WriteLog(text, this.singleLogFilePath.Text);
         }
     }
 }
示例#2
0
 private string doLogParse()
 {
     return(LogParser.ParseLogStyle(this._trunkLoggerData, this.logStyle.Text, this.parkedString.Text, this.unkString.Text, this.ignoreParked.Checked));
 }