From 12892a126ba02bc55a1522ed8201b02e5705927a Mon Sep 17 00:00:00 2001 From: sh_akira Date: Fri, 7 Apr 2023 02:21:52 +0900 Subject: [PATCH] =?UTF-8?q?MOD=E3=81=AELog=E7=94=BB=E9=9D=A2=E3=81=8C?= =?UTF-8?q?=E5=8B=95=E3=81=8B=E3=81=AA=E3=81=8B=E3=81=A3=E3=81=9F=E5=95=8F?= =?UTF-8?q?=E9=A1=8C=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/ControlWPFWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/ControlWPFWindow.cs b/Assets/Scripts/ControlWPFWindow.cs index ed2d65f7..0a996874 100644 --- a/Assets/Scripts/ControlWPFWindow.cs +++ b/Assets/Scripts/ControlWPFWindow.cs @@ -2543,8 +2543,8 @@ private async void LogMessageHandler(string cond, string trace, LogType type) default: notifyType = NotifyLogTypes.Log; break; } - //Warning以下かつ、*から始まらないものはうるさいので飛ばさない - if (notifyLogLevel <= notifyType && !cond.StartsWith("*")) + //通知レベルがLog以外の時かつ、Warning以下かつ、*から始まらないものはうるさいので飛ばさない + if (notifyLogLevel != NotifyLogTypes.Log && notifyLogLevel <= notifyType && !cond.StartsWith("*")) { return; }