Log statements not being written?

Greetings,

I added logging to my app but when running in the editor I am not seeing the log output.
Specifically, I am using ILogger and LogFactory.GetLogger and checking logger.logEnabled to see if I should output log messages.

In the debugger I see that logEnabled is true but I am not seeing log output.

Why would that be?

6680467--765685--upload_2021-1-2_13-53-8.png

FWIW, Debug.Log() works fine.

Are all the little radio buttons in the upper corner of your console window enabled?

Put a breakpoint on a line that outputs… does it execute?

Not sure what radio buttons you’re talking about. I see this:

6681109--765781--upload_2021-1-2_18-15-50.png

The screenshots in my original post were from a breakpoint in the debugger. If I change them to Debug.Log() the log output gets written. It just doesn’t seem to like logger.Log().

I was trying to follow the pattern that Mirror used in their networking code:
6681109--765784--upload_2021-1-2_18-17-14.png

6681109--765787--upload_2021-1-2_18-17-45.png