我在应用程序,Identity Server和Microsoft.OWIN层之间遇到间歇性问题。问题可能是我做错了,但实际上可能是Microsoft.OWIN中的一个错误。为了更好地理解问题的根本原因,我试图打开OWIN层的登录。
我跟着this post by Tugberk Ugurlu,但没有任何东西被写入日志文件。
这是我的web.config文件条目。
<system.diagnostics>
<switches>
<add name="Microsoft.Owin" value="4" />
</switches>
<trace autoflush="true" />
<sharedListeners>
<add name="file" type="System.Diagnostics.TextWriterTraceListener" initializeData="OWINtrace.log" />
</sharedListeners>
<sources>
<source name="Microsoft.Owin" switchName="Microsoft.Owin" switchType="System.Diagnostics.SourceSwitch">
<listeners>
<add name="file" />
</listeners>
</source>
</sources>
</system.diagnostics>
我做错了什么?