Exception log doesnt show in Unity Console

Hello, I would like to ask you a question because the log does not appear in the Unity console window even if an Exception occurs while working.

image

This is how NullException occurred, and the console window says nothing.

If you know the reason, please leave a comment…

You could be catching the exception somewhere and not doing anything with it. Alternatively, if this is called from async code, exceptions thrown in the context of a running task can be captured and not show up until the task is awaited by a context that falls back to logging the exception to the Console. Try looking through the call stack for either of these things.