mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-04-23 06:16:35 +08:00
1、修复因加入输入位姿引发的BUG
2、PMA工具完善 3、其他BUG修复
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
@@ -27,8 +27,9 @@ namespace Logger
|
||||
string time = Regex.Split(logMsg, " -> ")[0];
|
||||
string msgLevel = Regex.Split(logMsg, " -> ")[1].Split(',')[0];
|
||||
string msgDetal = Regex.Split(logMsg, " -> ")[1];
|
||||
// msgDetal = Regex.Split(msgDetal, ",")[1];
|
||||
txbLogTime.Text = time;
|
||||
txbLogLevel.Text = msgLevel;
|
||||
txbLogLevel.Text = msgLevel;
|
||||
txbLogLevel.BackColor = (msgLevel == "Warn" || msgLevel == "Exception") ? Color.Red : Color.Lime;
|
||||
richDetail.Text = msgDetal;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user