惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
Recent Announcements
Recent Announcements
D
Docker
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
腾讯CDC
B
Blog
博客园_首页
罗磊的独立博客
D
DataBreaches.Net
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence

博客园 - Easy Company

如何取得显示实现方法的MethodInfo SQL Server 2008中许多兼容性上的问题 Mock 对象何时使用? ThreadPool 在.Net 2.0 SP1中的部分变化可能会让你的程序停止工作 目前不能使用SQL Server 2008 CTP February 2008存储Team Foundation Server 2008的数据 Javascript操作在各浏览器下的性能比较 WCF Web 编程模型资源 代码行数引起的思考 在按钮点击后禁用它直到操作完成 - Easy Company - 博客园 ASP.NET 2.0中使用强类型访问PreviousPage属性页的控件 Silverlight 与 Microsoft ASP.NET Futures (July 2007) 更新 VS 2008 和.NET 3.5 Beta 2 安装注意事项 Partial Methods CIL(Common Intermediate Language)指令集 刚刚下载了 Visual Studio 2005 Service Pack 1 (SP1) 使用 Facade 设计模式管理 ASP.Net Session 变量 使用 Membership 时获取用户的最后登录时间 How To 推荐用于 AJAX 页面的进度指示器图片
.Net 中的日志
Easy Company · 2006-12-01 · via 博客园 - Easy Company

System.Net and related.

Summary: Useful logging option to track problems on Sockets, Remoting Channel, Web Requests and HttpListener.
Platform: .Net 2.0
Details:

ADO.Net Managed Provider ETW Tracing

Summary: Very powerful tracing with details on API invocations, 1st chance exceptions. Next generation of high performance tracing.
Platform: .Net 2.0 with Windows 2003 SP1 or Windows XP SP2
Details:

System.Xml Serialization.

Summary: Leave the temporary auto-generarted XML serialization code behind for easier debugging XML serialization problems.
Platform: .Net 1.0 above
Details:

Visual Studio 2005 IDE Activity Log

Summary: Provide additional information for IDE crash issues.
Platform: Visual Studio 2005
Details:

Team Foundation Server Component Trace

Summary: File based trace for TFS components.
Platform: Team Foundation Server
Details:

Team Build Service Log

Summary: Detailed log for troubleshooting Team Build Service problems.
Platform: Team Foundation Server
Details:

Please refer to the comment in the following file where Team Build Service is installed: 
C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\tfsbuildservice.exe.config

Team Foundation Client Log

Summary: This log is useful for tracking problem, espcially performance problem with Team Explorer.
Platform: Team Foundation Server Client Components
Details:

There seems to be no formal document on this. Buck's blog has mentioned it:

Apart from Buck's blog, the setting for the .Config file can also use a file based trace listener:

 1 <system.diagnostics>
 2     <switches>
 3       <add name="General" value="4" />
 4     </switches>
 5     <trace autoflush="true" indentsize="3">
 6       <listeners>
 7         <add name="myListener"        
 8          type="Microsoft.TeamFoundation.TeamFoundationTextWriterTraceListener,
 9          Microsoft.TeamFoundation.Common, Version=8.0.0.0, Culture=neutral,
10          PublicKeyToken=b03f5f7f11d50a3a"
11          initializeData="c:\devenv.log" />
12       </listeners>
13     </trace>
14 </system.diagnostics>

IEHost Log

Summary: Trace for troubleshooting .Net WinForm component download hosted in IE.
Platform: .Net 1.0 above
Details:

[原文]