1. 打开wcf配置:
2. enable trace , log
可以改变log路径:
3. 用 SvcTraceViewer.exe (直接在c盘下搜索) 查看
4. 如果想自定义trace:
monospace; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; line-height: 12pt; padding-right: 0px; width: 100%; background-color: white">catch(Exception ex)
{
Trace.Write(ex.ToString());
isValidate = false;
}
可以在config里指定log 名及路径:
<trace autoflush="true" >
<listeners>
<add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="Auth.log" />
<remove name="Default" />
</listeners>
</trace>
system.diagnostics>
可以直接用记事本打开