Commit 399ed706 authored by tsuji's avatar tsuji

log出力から余計な日時出力を除去

parent 95ab77bc
...@@ -264,6 +264,11 @@ namespace CSRender ...@@ -264,6 +264,11 @@ namespace CSRender
{ {
tranceString = logString.ReadLine(); tranceString = logString.ReadLine();
lineCount++; lineCount++;
//logファイルにある処理日時表示を除去
if (lineCount == 14 || lineCount == 19 || lineCount == 36 || lineCount == 37 || lineCount == 38 || lineCount == 39)
{
tranceString = tranceString.Substring(0,66);
}
if (lineCount > 13 && lineCount < 40)//必要なところだけをUIに記述 if (lineCount > 13 && lineCount < 40)//必要なところだけをUIに記述
{ {
ResultConsole.Text += tranceString + "\r\n"; ResultConsole.Text += tranceString + "\r\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment