From 399ed7069e53c9417a24bfcbb8d4377aaf39e241 Mon Sep 17 00:00:00 2001 From: tsuji Date: Thu, 2 Dec 2021 16:00:03 +0900 Subject: [PATCH] =?UTF-8?q?log=E5=87=BA=E5=8A=9B=E3=81=8B=E3=82=89?= =?UTF-8?q?=E4=BD=99=E8=A8=88=E3=81=AA=E6=97=A5=E6=99=82=E5=87=BA=E5=8A=9B?= =?UTF-8?q?=E3=82=92=E9=99=A4=E5=8E=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Code/CSRender/CSRender/MainWindow.xaml.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Code/CSRender/CSRender/MainWindow.xaml.cs b/Code/CSRender/CSRender/MainWindow.xaml.cs index ecbe3f4..4dd63ca 100644 --- a/Code/CSRender/CSRender/MainWindow.xaml.cs +++ b/Code/CSRender/CSRender/MainWindow.xaml.cs @@ -264,6 +264,11 @@ namespace CSRender { tranceString = logString.ReadLine(); 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に記述 { ResultConsole.Text += tranceString + "\r\n"; -- 2.22.0