我正在使用NuGet TraceEvent 库。我正在尝试将 Level.Verbose 事件写入调试通道;但是,调试通道未显示在 EventViewer 中。
我尝试修改清单以将默认启用 =“false”更改为“true”,然后使用 wevtutil 注册它。
<channels>
<channel chid="Admin" name="MyApp/Admin" value="16" type="Admin" enabled="true"/>
<channel chid="Operational" name="MyApp/Operational" value="17" type="Operational" enabled="true"/>
<channel chid="Debug" name="MyApp/Debug" value="19" type="Debug" enabled="false"/>
</channels>
事件查看器中似乎没有任何东西可以启用调试通道。