79139723

Date: 2024-10-30 05:23:21
Score: 0.5
Natty:
Report link

The logs went away when adding the following rule to the nlog.config file:

<rules>
    <logger name="Microsoft.*" final="true" /> <!-- <<<< this rule -->
    <logger name="*" minlevel="Info" writeTo="Console"/>
</rules>

The final="True" is to prevent matching any other rule for the loggers on the Microsoft.* namespaces and note that do not have any writeTo attribute.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jonathan Gómez Pérez