我的服务器中的日志已满,WCF导致此错误,我猜。我试了几天才找到导致它的原因,但没有运气。 我的WCF服务(4.0)托管在iis中,据我所知,运行良好。 也许有人知道?
答案 0 :(得分:0)
我找到了停止向事件日志写入每一点信息的方法。 这就是我所做的:我将TraceLevelSwitch设置为1 - 仅错误。
<system.diagnostics>
<switches>
<!-- This switch controls data messages. In order to receive data
trace messages, change value="0" to value="1" -->
<add name="DataMessagesSwitch" value="0" />
<!-- This switch controls general messages. In order to
receive general trace messages change the value to the
appropriate level. "1" gives error messages, "2" gives errors
and warnings, "3" gives more detailed error information, and
"4" gives verbose trace information -->
<add name="TraceLevelSwitch" value="1" />
</switches>
</system.diagnostics>