Skip to content

Commit

Permalink
MODのLog画面が動かなかった問題修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-akira committed Apr 6, 2023
1 parent d14e109 commit 12892a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/ControlWPFWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 12892a1

Please sign in to comment.